-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
31 lines (31 loc) · 855 Bytes
/
package.json
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": "svelte",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"build:watch": "npm run build -- -w",
"clean": "npm run clean:dist && rimraf node_modules",
"clean:dist": "rimraf dist",
"lint": "eslint ./src/**"
},
"author": "Nicolas Charpentier",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"rimraf": "^2.5.4",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-svelte": "^3.1.0",
"rollup-watch": "^4.3.1"
}
}