-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "Atomize",
"version": "1.3.4",
"description": "GPGPU elastic-viscuous particles WebGL simulation",
"main": "src/main.js",
"eslintConfig": {
"extends": "mdcs",
"parserOptions": {
"ecmaVersion": 2017
},
"plugins": [
"html"
],
"globals": {
"WEBGL": "readonly",
"MobileDetect": "readonly"
}
},
"scripts": {
"build": "rollup -c",
"build-closure": "rollup -c && google-closure-compiler --warning_level=VERBOSE --jscomp_off=globalThis --jscomp_off=checkTypes --externs utils/externs.js --js build/Atomize.js --js_output_file build/Atomize.min.js",
"dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -w -c \" \"http-server\"",
"lint": "eslint src"
},
"author": "sciecode",
"license": "MIT",
"homepage": "https://sciecode.github.io/",
"devDependencies": {
"lodash": "^4.17.13",
"concurrently": "^4.1.1",
"ecstatic": "^4.1.2",
"eslint": "^5.16.0",
"eslint-config-mdcs": "^4.2.3",
"eslint-plugin-html": "^5.0.3",
"eslint-utils": ">=1.4.1",
"google-closure-compiler": "20190415.0.0",
"http-server": "^0.11.1",
"rollup": "^1.15.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"three": "^0.109"
}
}