-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.12 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
{
"name": "gulp-armapbo",
"version": "2.0.2",
"description": "The plugin for Gulp which allows to pack ArmA pbo files from sources.",
"repository": "https://github.com/winseros/gulp-armapbo-plugin",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"test": "./node_modules/.bin/gulp test:run",
"cover": "./node_modules/.bin/gulp cover:report",
"coveralls": "./node_modules/.bin/gulp cover:coveralls",
"assemble": "./node_modules/.bin/gulp assemble",
"watch": "./node_modules/.bin/gulp watch"
},
"keywords": [
"arma",
"arma2",
"arma3",
"pbo",
"gulpplugin"
],
"author": "winse",
"license": "MIT",
"bugs": {
"url": "https://github.com/winseros/gulp-armapbo-plugin/issues"
},
"homepage": "https://github.com/winseros/gulp-armapbo-plugin#readme",
"engines": {
"node": ">=6.9.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/gulp-util": "^3.0.34",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.12",
"@types/sinon": "^5.0.7",
"@types/vinyl": "^2.0.2",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-cached": "^1.1.1",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^1.1.3",
"gulp-mocha": "^3.0.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^5.0.0",
"merge-stream": "^1.0.1",
"mocha": "^5.2.0",
"natives": "^1.1.6",
"remap-istanbul": "^0.12.0",
"sinon": "^7.1.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.2.1"
},
"dependencies": {
"chalk": "^2.4.1",
"gulp-util": "^3.0.8",
"minimatch": "^3.0.4",
"single-line-log": "^1.1.2",
"vinyl": "^2.2.0"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"!**/test/"
]
}