-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "stacker-core",
"repository": "StackerHQ/stacker-core",
"version": "0.1.6",
"license": "MIT",
"description": "Stacker Core",
"keywords": [
"stacker",
"stacker-core"
],
"authors": [
"Andrei Canta <andrei@hexbridge.com>",
"Kinga Iakab <kinga@hexbridge.com>"
],
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"build:dev": "nodemon --watch src --exec \"npm run build\"",
"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": {
"fs-promise": "^2.0.0",
"hostile": "^1.2.0",
"js-yaml": "^3.8.1",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"nedb-promise": "^2.0.1"
},
"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": "^1.17.7"
}
}