-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.08 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
{
"private": true,
"name": "poosh",
"description": "Publish local files to virtually any remote endpoint (AWS S3)",
"author": "Merlicco Yves",
"repository": "https://github.com/yvele/poosh",
"keywords": [
"poosh",
"s3",
"aws",
"publish",
"publisher",
"sync"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/yvele/poosh/issues"
},
"homepage": "https://github.com/yvele/poosh",
"scripts": {
"bootstrap": "./scripts/bootstrap.sh",
"build": "./scripts/build.sh",
"clean": "npm run clean:build && npm run clean:test && npm run clean:npm",
"clean:build": "./scripts/clean-build.sh",
"clean:npm": "./scripts/clean-npm.sh",
"clean:test": "./scripts/clean-test.sh",
"coverage": "./scripts/coverage.sh",
"outdated": "./scripts/outdated.sh",
"publish": "./scripts/publish.sh",
"style": "npm run build && npm run style:only",
"style:only": "./scripts/style.sh",
"test": "./scripts/test.sh",
"validate": "npm run style && npm run test"
},
"engines": {
"node": ">=v5.12.0",
"npm": ">=v4.1.1"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-flow-comments": "^6.3.19",
"babel-plugin-istanbul": "^4.0.0",
"babel-plugin-transform-builtin-extend": "^1.1.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-preset-env": "^1.2.2",
"babel-register": "^6.24.0",
"eslint": "^3.18.0",
"eslint-config-poosh": "^2.0.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.9.0",
"lerna": "2.0.0-beta.38",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"rewire": "^2.5.2",
"should": "^11.2.1"
},
"nyc": {
"reporter": [
"text",
"text-summary",
"lcov",
"html"
],
"include": [
"packages/*/src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false,
"all": true
}
}