-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "architect",
"version": "1.0.0",
"description": "",
"main": "lib/",
"directories": {
"test": "test"
},
"scripts": {
"test": "nyc ava test/unit/**/ test/unit/ test/functional/**/ test/functional/",
"test:coverage": "nyc report --reporter=text",
"test:coveralls": "nyc report --reporter=text-lcov | coveralls",
"jsdoc": "jsdoc -r -d doc/html lib",
"lint": "eslint lib test",
"lint:fix": "eslint --fix lib test",
"precommit": "npm run lint:fix && npm test",
"postmerge": "npm intall"
},
"author": "",
"license": "ISC",
"engines": {
"node": ">= 6.0.0"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.24.0",
"babel-runtime": "^6.23.0",
"chai": "^3.5.0",
"chai-performance": "^0.1.4",
"chance": "^1.0.6",
"console.mute": "^0.3.0",
"coveralls": "^2.13.0",
"eslint": "^3.11.1",
"eslint-plugin-import": "^2.2.0",
"husky": "^0.13.3",
"istanbul": "^1.1.0-alpha.1",
"jsdoc": "^3.4.3",
"npm-run-all": "^4.0.2",
"nyc": "^10.1.2",
"rewire": "^2.5.2",
"sinon": "^1.17.6"
},
"dependencies": {
"joi": "^10.2.2",
"lodash": "^4.17.4",
"log": "^1.4.0"
},
"ava": {
"require": [
"babel-core/register"
]
}
}