forked from mapbox/webgl-wind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 904 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
{
"name": "webgl-wind",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "eslint src/*.js demo/index.js data/prepare.js",
"serve": "st -nc -i index.html",
"start": "run-p serve watch"
},
"keywords": [],
"author": "Vladimir Agafonkin",
"license": "ISC",
"devDependencies": {
"eslint": "^3.15.0",
"eslint-config-mourner": "^2.0.1",
"npm-run-all": "^4.0.1",
"pngjs": "^3.0.0",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-string": "^2.0.2",
"rollup-watch": "^3.2.2",
"st": "^1.2.0"
},
"eslintConfig": {
"extends": "mourner",
"parserOptions": {
"sourceType": "module"
},
"globals": {
"dat": false,
"WindGL": false
},
"rules": {
"no-var": 2,
"prefer-const": 2
}
}
}