-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "stacker-cli",
"repository": "StackerHQ/stacker-cli",
"version": "0.1.7",
"license": "MIT",
"description": "Stacker CLI",
"keywords": [
"stacker",
"stacker-cli"
],
"authors": [
"Andrei Canta <andrei@hexbridge.com>",
"Kinga Iakab <kinga@hexbridge.com>"
],
"main": "dist/stacker.js",
"bin": {
"stacker": "dist/stacker.js"
},
"scripts": {
"build": "babel src --out-dir dist",
"build:dev": "nodemon --watch src --exec \"npm run build && chmod +x dist/stacker.js\"",
"test": "NODE_ENV=testing mocha tests --require babel-register",
"test:dev": "npm run test -- --watch",
"lint": "eslint src tests",
"lint:fix": "npm run lint -- --fix",
"clean": "rimraf dist",
"prepublish": "npm run clean & npm run build"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"caporal": "^0.3.0",
"inquirer": "^3.0.1",
"sinon": "2.0.0-pre.3",
"stacker-core": "latest",
"update-notifier": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.22.0",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"rimraf": "^2.5.4",
"sinon": "2.0.0-pre.5"
}
}