-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "heroku-cli-what-amideploying",
"description": "Heroku CLI plugin for diffing files and commits since last Heroku deploy.",
"version": "0.3.0",
"author": {
"name": "Travis Pett",
"email": "[email protected]"
},
"files": [
"lib"
],
"keywords": [
"heroku-plugin"
],
"license": "ISC",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib --ignore '*.test.js'",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build",
"test": "flow check && eslint . && jest",
"release": "np"
},
"dependencies": {
"cli-engine-command": "^5.1.7",
"cli-engine-config": "^1.3.7",
"cli-engine-heroku": "^1.1.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-import": "^2.5.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.48.0",
"flow-typed": "^2.1.2",
"jest": "^20.0.4",
"rimraf": "^2.6.1"
}
}