-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.51 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
{
"name": "swf-merge",
"version": "0.11.0",
"description": "Merge SWF files",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:open-flash/swf-merge.git"
},
"keywords": [
"swf",
"merge"
],
"licenses": [
{
"type": "MIT",
"url": "https://spdx.org/licenses/MIT"
}
],
"engines": {
"node": ">=13.2"
},
"scripts": {
"build": "gulp lib:build",
"watch": "gulp lib:watch",
"test": "gulp test",
"lint": "gulp lint",
"format": "gulp format",
"typedoc": "gulp lib:typedoc",
"dist": "gulp lib:dist",
"prepare": "gulp all:tsconfig.json && gulp tslint.json && gulp dist",
"pretest": "gulp lint",
"prepublishOnly": "echo \"Use \\`gulp lib:publish\\`\" && exit 1",
"prestart": "gulp main:build",
"start": "node build/main/main/main.js"
},
"dependencies": {
"incident": "^3.2.0",
"semantic-types": "^0.1.1",
"swf-types": "^0.11.0"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/gulp": "^4.0.6",
"@types/minimist": "^1.2.0",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"chai": "^4.2.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.0",
"kryo": "^0.8.1",
"minimist": "^1.2.0",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"turbo-gulp": "^0.22.1",
"typescript": "^3.8.2"
},
"c88": {
"match": [
"build/test/lib/*.{js,mjs}",
"build/test/lib/**/*.{js,mjs}"
]
}
}