-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.58 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": "@therebel/rest-api",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint --ignore-pattern 'node_modules/**/*' --ignore-pattern 'coverage/**/*' --ignore-pattern '.nyc_output/**/*' .",
"pretest": "npm run lint",
"test": "nyc ava **/**.test.js **/**/**.test.js",
"test:watch": "ava --watch **/**.test.js **/**/**.test.js --verbose",
"pretest:coverage": "npm test",
"test:coverage": "nyc report --reporter=html && open coverage/index.html",
"precommit": "npm test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/therebelbeta/rest-api.git"
},
"author": "Ozzy Haven <npm@therebelrobot.com> (@therebelrobot)",
"license": "MIT",
"bugs": {
"url": "https://github.com/therebelbeta/rest-api/issues"
},
"homepage": "https://github.com/therebelbeta/rest-api#readme",
"dependencies": {
"@f/get-prop": "^1.1.1",
"@f/set-prop": "^1.0.1",
"@therebel/log": "^1.0.0",
"http-assert": "^1.3.0",
"ksuid": "^0.3.0",
"lodash": "^4.17.4",
"micro": "^8.0.1",
"microrouter": "^2.2.1",
"sequelize": "^4.4.2",
"sqlite3": "^3.1.9"
},
"devDependencies": {
"ava": "^0.21.0",
"eslint": "^4.4.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"mock-require": "^2.0.2",
"nodemon": "^1.11.0",
"nyc": "^11.1.0"
}
}