-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
129 lines (129 loc) · 3.39 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "r3connect",
"version": "1.1.0",
"author": "Julian Hundeloh",
"email": "[email protected]",
"license": "AGPL-3.0+",
"description": "r3connect is a lean wrapper of node-rfc that provides comfortable access to SAP back-ends via a simple REST API.",
"engines": {
"node": ">=6.0.0"
},
"main": "./build/index.js",
"bin": {
"r3connect": "./cli.js"
},
"scripts": {
"cli": "better-npm-run cli",
"build": "better-npm-run build",
"dev": "better-npm-run dev",
"test": "better-npm-run test",
"format": "better-npm-run format",
"lint": "better-npm-run lint",
"precommit": "npm run test && npm run format && npm run lint && npm run build && git add build",
"commitmsg": "validate-commit-msg",
"postmerge": "npm install",
"postrewrite": "npm install"
},
"betterScripts": {
"cli": {
"command": "node ./build/cli.js"
},
"build": {
"command": "rimraf ./build && webpack --progress --colors",
"env": {
"NODE_ENV": "production"
}
},
"dev": {
"command": "babel-watch ./src/cli.js --inspect --source-maps",
"env": {
"NODE_ENV": "development"
}
},
"test": {
"command": "mocha --compilers js:babel-register --require babel-polyfill ./src/**/*.spec.js",
"env": {
"NODE_ENV": "development"
}
},
"format": {
"command": "prettier src/**/*.js --single-quote --trailing-comma all --no-semi --write",
"env": {
"NODE_ENV": "production"
}
},
"lint": {
"command": "eslint src/**/*.js --fix",
"env": {
"NODE_ENV": "production"
}
}
},
"lint-staged": {
"*.js": ["prettier", "git add"]
},
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
],
"helpMessage": "Types: feat, fix, docs, style, refactor, perf, test, chore, revert"
}
},
"dependencies": {
"better-npm-run": "0.0.15",
"chalk": "^2.0.1",
"colors.js": "^1.2.4",
"error-subclass": "^2.2.0",
"fs-extra": "^4.0.0",
"good": "^7.2.0",
"good-console": "^6.2.0",
"good-file": "^6.0.1",
"good-squeeze": "^5.0.1",
"hapi": "^16.4.3",
"hapi-boom-decorators": "^3.0.0",
"joi": "^10.5.2",
"object-hash": "^1.1.8",
"pool2": "^1.4.1",
"source-map-support": "^0.4.15",
"update-notifier": "^2.2.0"
},
"peerDependencies": {
"node-rfc": "^0.1.11"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-watch": "^2.0.7",
"chai": "^4.0.2",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.1.2",
"husky": "^0.13.4",
"json-loader": "^0.5.4",
"lint-staged": "^3.6.1",
"mocha": "^3.4.2",
"prettier": "^1.5.3",
"rimraf": "^2.5.4",
"validate-commit-msg": "^2.12.2",
"webpack": "^2.6.1"
}
}