-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.81 KB
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
{
"name": "jmmdscenekit",
"version": "0.1.2",
"description": "JavaScript framework for JSceneKit and MikuMikuDance",
"main": "./index.node.js",
"browser": {
"./index.node.js": "./index.web.js"
},
"scripts": {
"lint": "gulp lint",
"build": "gulp build",
"test": "gulp test",
"test-coverage": "nyc --include src npm test",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"doc": "esdoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magicien/JMMDSceneKit.git"
},
"keywords": [
"ECMAScript",
"JavaScript",
"WebGL",
"SceneKit",
"MikuMikuDance",
"JSceneKit",
"JMMDSceneKit"
],
"author": "DarkHorse",
"license": "MIT",
"bugs": {
"url": "https://github.com/magicien/JMMDSceneKit/issues"
},
"homepage": "https://github.com/magicien/JMMDSceneKit#readme",
"babel": {
"presets": [
"env"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"esdoc": "^1.1.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^5.0.0",
"gulp-exec": "^3.0.2",
"gulp-if": "^2.0.2",
"gulp-mocha": "^6.0.0",
"gulp-uglify": "^3.0.1",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.1",
"jscenekit": "^0.4.0",
"mocha": "^5.2.0",
"mocha-sinon": "^2.1.0",
"nyc": "^13.1.0",
"path": "^0.12.7",
"require-dir": "^1.2.0",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0",
"tgaimage": "^1.1.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.3",
"webpack-stream": "^5.2.1"
},
"peerDependencies": {
"jscenekit": "^0.3.0"
},
"dependencies": {
"babel-register": "^6.26.0"
}
}