-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 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
63
64
65
66
67
68
69
70
{
"name": "tgaimage",
"version": "1.0.0",
"description": "TGA Image Loader for Web browsers",
"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/TGAImage.git"
},
"keywords": [
"ECMAScript",
"JavaScript",
"TGA"
],
"author": "magicien",
"license": "MIT",
"bugs": {
"url": "https://github.com/magicien/TGAImage/issues"
},
"homepage": "https://github.com/magicien/TGAImage#readme",
"babel": {
"presets": [
"es2015"
]
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-static-fs": "^1.1.0",
"chai": "^4.1.0",
"esdoc": "^1.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^4.0.0",
"gulp-exec": "^2.1.3",
"gulp-if": "^2.0.2",
"gulp-mocha": "^4.3.1",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.11",
"mocha": "^3.5.0",
"mocha-sinon": "^2.0.0",
"nyc": "^11.1.0",
"path": "^0.12.7",
"require-dir": "^0.3.2",
"script-loader": "^0.7.0",
"sinon": "^3.0.0",
"sinon-chai": "^2.12.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.4.1",
"webpack-stream": "^3.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1"
},
"dependencies": {
}
}