-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "WebGPU",
"version": "0.1.0",
"description": "WebGPU Compute.",
"main": "build/WebGPU.js",
"scripts": {
"build": "rollup -c && rollup -c rollup.config.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anhr/WebGPU"
},
"author": "Andrej Hristoliubov https://anhr.github.io/AboutMe/",
"license": "Apache-2.0",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"concurrently": "^3.6.1",
"eslint": "^3.5.0",
"eslint-config-airbnb-base": "^7.1.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.15.0",
"extend": "^3.0.2",
"jsdoc-to-markdown": "^4.0.1",
"replace-between": "0.0.8",
"rollup": "^0.54.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-cleanup": "^2.0.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sass": "^0.6.1",
"rollup-plugin-uglify": "^2.0.1",
"serve": "^11.3.2"
},
"eslintConfig": {
"extends": "airbnb-base",
"rules": {
"comma-dangle": 0,
"func-names": 0,
"no-alert": 0,
"no-console": 1,
"no-use-before-define": 0,
"prefer-rest-params": 0,
"prefer-template": 0,
"no-mixed-operators": 0,
"no-undef": 0,
"no-underscore-dangle": 0,
"prefer-arrow-callback": 0,
"space-before-function-paren": 0,
"global-require": 0,
"object-shorthand": 0,
"max-len": 0,
"no-param-reassign": 0,
"consistent-return": 0,
"no-restricted-syntax": 0,
"no-bitwise": 0,
"no-plusplus": 0
}
},
"dependencies": {
"error-js": "0.0.5",
"uglify-es": "^3.3.9"
}
}