-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "atomic-s3",
"version": "0.2.2",
"description": "Deploy projects 'atomically' to S3",
"main": "lib/main.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "eslint src/*.js test/*.js && mocha -t 2000000",
"compile": "babel --presets es2015,stage-0 -d lib/ src/",
"prepublish": "npm run compile"
},
"bin": {
"atomic-s3": "lib/main-cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lucified/atomic-s3.git"
},
"license": "MIT",
"dependencies": {
"chalk": "^1.1.3",
"cli-table2": "^0.2.0",
"deepcopy": "^0.6.1",
"del": "^2.0.2",
"file-exists": "^2.0.0",
"gulp-awspublish": "^3.0.1",
"lodash": "^4.13.1",
"merge2": "^1.0.3",
"minimist": "^1.2.0",
"through2": "^2.0.1",
"vinyl-fs": "^2.3.1"
},
"devDependencies": {
"aws-sdk": "^2.3.3",
"babel-cli": "^6.18.0",
"babel-core": "^6.4.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"event-stream": "3.3.4",
"gulp-debug": "^3.0.0",
"mocha": "^3.2.0",
"rxjs": "^5.1.1"
}
}