-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
86 lines (86 loc) · 2.79 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"bin": {
"extendscriptr": "./index.js"
},
"version": "1.2.5",
"name": "extendscriptr",
"description": "A node build configuration to develop extendScripts with es2015 javascript code",
"scripts": {
"clean:temp": "rm -rf ./.tmp ; mkdir ./.tmp",
"clean:dist": "rm -rf ./test/dist ; mkdir ./test/dist",
"compile:test:illustrator": "node ./index.js -s test/src/illustrator.js -o test/dist/illustrator.js -t 'illustrator'",
"compile:test:indesign": "node ./index.js -s test/src/indesign.js -o test/dist/indesign.js -t 'indesign'",
"compile:test:indesign-basil": "exsbundlr -i test/src/indesign-basil.js -o test/dist/indesign-basil.bundle.js & node ./index.js -s test/dist/indesign-basil.bundle.js -o test/dist/indesign-basil.js",
"compile:test:aftereffects": "node ./index.js -s test/src/aftereffects.js -o test/dist/aftereffects.js -t 'aftereffects'",
"compile:test:photoshop": "node ./index.js -s test/src/photoshop.js -o test/dist/photoshop.js -t 'photoshop'",
"compile:test:all": "npm run compile:test:illustrator & npm run compile:test:indesign & npm run compile:test:indesign-basil & npm run compile:test:aftereffects & npm run compile:test:photoshop",
"test": "npm run clean:dist ; npm run compile:test:all ; npm run clean:temp",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ExtendScript/extendscriptr.git"
},
"keywords": [
"automation",
"build",
"process",
"extendScript",
"indesign",
"illustrator",
"photoshop",
"adobe",
"es2015",
"es6",
"compile"
],
"author": "vogelino",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/ExtendScript/extendscriptr/issues"
},
"homepage": "https://github.com/ExtendScript/extendscriptr#readme",
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-es5-property-mutators": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"commander": "^2.15.1",
"contributors": "^0.5.1",
"extendscript-es5-shim": "^0.2.0",
"prependify": "^1.3.0"
},
"devDependencies": {
"@technologiestiftung/semantic-release-config": "1.2.1",
"all-contributors-cli": "6.3.1",
"babel-eslint": "10.0.1",
"cz-conventional-changelog": "2.1.0",
"debug": "4.1.1",
"eslint": "5.9.0",
"extendscript-bundlr": "0.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"contributors": [
"Bruno Herfst",
"Fabian Morón Zirfas",
"Lucas Vogel",
"Stefano Masini",
"imbsky"
],
"engineStrict": true,
"engines": {
"npm": ">=3.0.0"
},
"main": "index.js",
"directories": {
"test": "test"
}
}