-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.61 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "nextgl",
"version": "0.0.1-alpha.2",
"description": "A modern WebGL2 library",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "gulp watch-shader-chunks --silent & npm run examples & cross-env FXGL_SERVE=true rollup -w -c --experimentalDynamicImport",
"build": "rollup -c --experimentalDynamicImport",
"examples": "webpack --config ./examples/webpack.config.babel.js -w --display minimal"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0-rc.1",
"@babel/core": "^7.0.0-rc.1",
"@babel/plugin-proposal-class-properties": "^7.0.0-rc.1",
"@babel/plugin-proposal-decorators": "^7.0.0-rc.1",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/register": "^7.0.0-rc.1",
"angle-normals": "^1.0.0",
"babel-eslint": "^8.2.6",
"bunny": "^1.0.1",
"cross-env": "^5.2.0",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-cli": "^2.0.1",
"gulp-watch": "^5.0.1",
"lerp": "^1.0.3",
"normals": "^1.1.0",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^4.0.0-beta.8",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-glslify": "^1.0.5",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-watch": "^4.3.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"xo": "^0.22.0"
},
"dependencies": {
"gl-mat4": "^1.2.0",
"minivents": "^2.2.0",
"orbit-controls": "^1.2.4",
"primitive-plane": "^2.0.0",
"primitive-sphere": "^3.0.0"
},
"xo": {
"space": 2,
"esnext": true,
"parser": "babel-eslint",
"envs": [
"node",
"browser",
"es6"
],
"syntax_map": {
"JavaScript (Babel)": "javascript"
},
"rules": {
"operator-linebreak": [
2,
"before"
],
"curly": [
2,
"multi-or-nest"
],
"unicorn/no-abusive-eslint-disable": 0,
"one-var": 0,
"no-else-return": 1,
"capitalized-comments": 0,
"no-undef": 0,
"no-new": 0,
"camelcase": 0,
"linebreak-style": 0,
"new-cap": [
1,
{
"newIsCap": true,
"capIsNew": true,
"properties": false
}
],
"babel/arrow-parens": 0,
"xo/filename-case": 0,
"no-warning-comments": 0,
"unicorn/filename-case": 0,
"import/no-unassigned-import": 0,
"import/prefer-default-export": 0,
"import/extensions": [
2,
"never",
{
"json": "always"
}
]
}
}
}