-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 996 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "simon",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"lint": "eslint ."
},
"author": "Kevin Cameron",
"license": "ISC",
"dependencies": {
"eslint-config-arenanet": "^3.0.1",
"lodash": "^4.16.6",
"mainloop.js": "^1.0.3",
"mithril": "git+https://github.com/lhorie/mithril.js.git#rewrite",
"modular-css": "^0.29.0",
"postcss": "^5.2.5",
"postcss-color-function": "^2.0.1",
"postcss-nested": "^1.0.0",
"rollup": "^0.36.3",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-watch": "^2.5.0"
},
"eslintConfig": {
"extends": "arenanet",
"env": {
"node": true,
"mocha": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "module"
},
"rules": {
"prefer-template": "off",
"consistent-this": "off"
}
}
}