-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
65 lines (65 loc) · 2.33 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
{
"name": "ae-to-json",
"version": "1.1.2",
"description": "will export an After Effects project as a JSON object",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Mikko Haapoja",
"email": "[email protected]",
"url": "https://github.com/mikkoh"
},
"dependencies": {
"JSON2": "^0.1.0",
"deep-extend": "^0.4.1",
"es5-shim": "^4.5.7",
"xtend": "^4.0.1"
},
"devDependencies": {
"after-effects": "^0.3.2",
"babel-cli": "^6.8.0",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"big-object-diff": "^0.7.0",
"browserify": "^13.0.0",
"chalk": "^1.1.3",
"deep-equal": "^1.0.1",
"nodemon": "^1.9.1",
"opn-cli": "^3.1.0",
"tape": "^4.5.1",
"traverse": "^0.6.6",
"uglify-js": "^2.6.2"
},
"scripts": {
"start": "npm run watch",
"test": "npm run open-ae; npm run test-build-run; npm run clean-root;",
"prepublish": "npm run compile-ae",
"postpublish": "npm run clean-root",
"dist": "npm run compile-dist;",
"watch": "npm run open-ae; nodemon -w src/ -w test/ -x npm -- run test-build-run-watch",
"test-build-run-watch": "npm run test-build-run; npm run clean-root;",
"test-build-run": "npm run test-build; node test/",
"test-build": "npm run compile-ae;",
"transpile": "babel -d ./ src/ --ignore 'src/template/,src/dist.js'",
"compile-ae": "npm run transpile; npm run after-effects;",
"after-effects": "npm run after-effects-header; npm run after-effects-browserify; npm run after-effects-cat-footer",
"after-effects-header": "cat src/template/header.js > after-effects.js",
"after-effects-browserify": "browserify index.js -s aeToJSON >> after-effects.js",
"after-effects-cat-footer": "cat src/template/footer.js >> after-effects.js",
"compile-dist": "npm run transpile; cp src/dist.js dist.js; browserify dist.js -o dist/index.js; npm run clean-root",
"clean-root": "rm *.js; rm -rf util/",
"export-example": "npm run open-ae; npm run test-build; node example/exportExample.js",
"open-ae": "opn test/ae/testProject.aepx"
},
"keywords": [
"after,effects,json,jsx"
],
"repository": {
"type": "git",
"url": "git://github.com/jam3/ae-to-json.git"
},
"homepage": "https://github.com/jam3/ae-to-json",
"bugs": {
"url": "https://github.com/jam3/ae-to-json/issues"
}
}