forked from taoyuan/loopback-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.33 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.33 KB
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
{
"name": "loopback-utils",
"version": "0.5.0",
"description": "Loopback utilities",
"main": "./src/index.js",
"jsnext:main": "./src/index.js",
"scripts": {
"lint": "eslint src test",
"test": "npm run lint && nyc mocha test/**/*.test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/taoyuan/loopback-utils"
},
"keywords": [],
"author": {
"name": "Yuan Tao",
"email": "towyuan@outlook.com",
"website": ""
},
"license": "MIT",
"bugs": {
"url": "https://github.com/taoyuan/loopback-utils/issues"
},
"homepage": "https://github.com/taoyuan/loopback-utils#readme",
"dependencies": {
"bluebird": "^3.5.0",
"errs": "^0.3.2",
"lodash": "^4.17.4",
"minimatch": "^3.0.4"
},
"optionalDependencies": {
"debug": "^3.0.1"
},
"devDependencies": {
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.3.0",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0",
"xo": "^0.18.2"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}