-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
81 lines (81 loc) · 2.01 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
{
"name": "jscenekit",
"version": "0.5.2",
"description": "Port of SceneKit framework to JavaScript",
"homepage": "https://github.com/magicien/JSceneKit#readme",
"keywords": [
"ECMAScript",
"JavaScript",
"WebGL",
"SceneKit",
"JSceneKit"
],
"main": "./index.node.js",
"jsnext:main": "./index.js",
"module": "./index.js",
"scripts": {
"build": "gulp webpack",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"doc": "esdoc",
"lint": "gulp lint",
"test": "gulp test",
"test-coverage": "nyc --include src npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magicien/JSceneKit.git"
},
"author": {
"name": "magicien"
},
"license": "MIT",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"browser": {
"./index.node.js": "./index.web.js",
"./src/js/util/_File.js": "./src/js/util/_File.web.js",
"./src/js/util/_FileReader.js": "./src/js/util/_FileReader.web.js"
},
"bugs": {
"url": "https://github.com/magicien/JSceneKit/issues"
},
"bundleDependencies": false,
"dependencies": {
"tgaimage": "^1.1.0"
},
"deprecated": false,
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-static-fs": "^1.1.0",
"chai": "^4.1.2",
"esdoc": "^1.0.4",
"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.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.1",
"mocha": "^5.2.0",
"mocha-sinon": "^2.0.0",
"nyc": "^13.1.0",
"path": "^0.12.7",
"require-dir": "^1.2.0",
"script-loader": "^0.7.2",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.29.0",
"webpack-stream": "^5.2.1"
}
}