-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.31 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.31 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
{
"name": "flex-sdk-provider",
"version": "0.9.1",
"description": "Wraps the Adobe/Apache Flex SDK in a Node module.",
"author": "Tim De Pauw <hi@tmdpw.eu> (https://tmdpw.eu/)",
"engines": {
"node": ">=10"
},
"bin": {
"provide-flex-sdk": "lib/cli.js"
},
"main": "index.js",
"files": [
"lib/cli.js",
"lib/index.js",
"index.js",
"versions.json"
],
"scripts": {
"prepublish": "gulp clean && gulp build",
"test": "node node_modules/standard/bin/cmd.js src/**/*.js"
},
"repository": "timdp/flex-sdk-provider",
"bugs": {
"url": "https://github.com/timdp/flex-sdk-provider/issues"
},
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.6.1",
"console-stamp": "^0.2.0",
"defaults": "^1.0.2",
"del": "^2.2.0",
"download": "^4.1.2",
"mkdirp": "^0.5.1",
"move-file": "^2.1.0",
"pify": "^2.3.0",
"pinkie-promise": "^2.0.1",
"playerglobal-latest": "^0.1.7",
"slash": "^1.0.0",
"temp": "^0.8.3",
"user-home": "^2.0.0",
"yargs": "^4.7.0"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-load-plugins": "^1.2.2",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.0.1",
"standard": "^7.0.1"
}
}