-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
{
"name": "vertex-engine",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run lint",
"test:unit": "$(npm bin)/mocha --compilers js:babel-core/register ./test/**/*.spec.js",
"lint": "$(npm bin)/standard src/**/*.js --fix",
"lint:demos": "$(npm bin)/standard demos/**/*.js --fix",
"start": "$(npm bin)/webpack -w",
"build": "$(npm bin)/webpack",
"test:isomorphic": "$(npm bin)/webpack; node ./dist/out.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danman113/vertexEngine.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danman113/vertexEngine/issues"
},
"standard": {
"parser": "babel-eslint"
},
"babel": {
"presets": [
"stage-0"
]
},
"homepage": "https://github.com/danman113/vertexEngine#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.12.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.16.2",
"mocha": "^3.5.3",
"standard": "^10.0.3",
"webpack": "^3.5.6"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"delaunator": "^2.0.0",
"eslint": "^4.12.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"howler": "^2.0.5",
"lodash": "^4.17.4",
"priorityqueuejs": "^1.0.0"
}
}