-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "swf-extract",
"version": "1.1.0",
"description": "A simple node module for reading SWF format",
"main": "index.js",
"private": true,
"dependencies": {
"concat-frames": "^1.0.3",
"jpg-stream": "^1.1.1",
"lzma-purejs": "~0.9.3",
"png-stream": "^1.0.5",
"stream-to-array": "^2.3.0"
},
"directories": {
"test": "test"
},
"scripts": {
"test-legacy": "TEST_FILE='test-legacy/test.swf' node test-legacy/test.spec.js",
"transpile": "babel src --out-dir dist && cp package.json dist/package.json",
"test": "mocha --compilers js:babel-core/register --recursive",
"lint": "eslint 'src/**' 'test/**'",
"clear-dist": "rm -rf dist/",
"check": "npm test && npm run lint",
"check-and-publish": "stack ./scripts/publish.hs"
},
"repository": {
"type": "git",
"url": "https://github.com/Javran/swf-extract"
},
"keywords": [
"swf",
"flash",
"adobe"
],
"author": "Javran Cheng <[email protected]> (https://github.com/Javran)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Javran/swf-extract/issues"
},
"homepage": "https://github.com/Javran/swf-extract",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"mocha": "^3.4.2",
"lodash": "^4.17.4"
}
}