-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 857 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "alpha",
"version": "1.0.0",
"author": "skyllo",
"description": "Rollup.JS Module Example",
"main": "./dist/bundle.js",
"scripts": {
"clean": "rimraf dist/*",
"prebuild": "npm run lint",
"build": "npm run clean && rollup -c",
"start": "npm run clean && rollup -c -w",
"test": "jest",
"testw": "npm run test -- --watchAll",
"lint": "eslint .",
"prepublish": "npm test && npm run build"
},
"devDependencies": {
"babel-preset-env": "^1.4.0",
"babelrc-rollup": "^3.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^20.0.1",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-watch": "^3.2.2"
}
}