-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.4 KB
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
{
"bin": {
"extendscriptr": "./index.js"
},
"name": "extendscriptr",
"version": "1.1.0-semantically-released",
"description": "A node build configuration to develop extendScripts with es2015 javascript code",
"scripts": {
"commit": "git-cz",
"quatsch": "do",
"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: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:aftereffects & npm run compile:test:photoshop",
"test": "npm run clean:dist ; npm run compile:test:all ; npm run clean:temp",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/ExtendScript/extendscriptr.git"
},
"keywords": [
"automation",
"build",
"process",
"extendScript",
"indesign",
"illustrator",
"photoshop",
"adobe",
"es2105",
"es6",
"compile"
],
"author": "vogelino",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/ExtendScript/extendscriptr/issues"
},
"homepage": "https://github.com/ExtendScript/extendscriptr#readme",
"dependencies": {
"babel": "^6.5.2",
"babel-plugin-transform-es3-member-expression-literals": "^6.5.0",
"babel-plugin-transform-es3-property-literals": "^6.5.0",
"babel-plugin-transform-es5-property-mutators": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"commander": "^2.9.0",
"extendscript.prototypes": "0.0.8",
"prependify": "^1.2.0"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"commitizen": "^2.8.1",
"cz-conventional-changelog": "^1.1.6",
"semantic-release": "^4.3.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engineStrict": true,
"engines": {
"npm": ">=3.0.0"
}
}