-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"name": "prlint",
"version": "1.0.0",
"main": "src/app.js",
"repository": "[email protected]:ewolfe/prlint.git",
"author": "ewolfe <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "concurrently \"env-cmd .env micro-dev\" \"lt --subdomain prlint --port 3000\"",
"staging": "concurrently \"micro\" \"lt --subdomain prlint --port 3000\"",
"start": "micro",
"pretest": "./pretest.sh",
"test": "nyc env-cmd .env ava --serial",
"//": "echo 'we run ava in --serial because of issues with nock https://github.com/node-nock/nock/issues/541'",
"posttest": "nyc report --reporter=lcov --reporter=html",
"lint": "eslint ./src/**/*.js ./test/**/*.js"
},
"devDependencies": {
"ava": "^0.25.0",
"concurrently": "^4.0.1",
"env-cmd": "^8.0.2",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.0.0",
"lint-staged": "^8.0.0",
"localtunnel": "^1.9.1",
"micro-dev": "^3.0.0",
"nock": "^10.0.0",
"nyc": "^13.0.1",
"prettier": "1.15.2",
"request-promise-native": "^1.0.5",
"test-listen": "^1.1.0"
},
"dependencies": {
"flat": "^4.1.0",
"git-rev-sync": "^1.12.0",
"got": "^9.2.1",
"jsonwebtoken": "^8.3.0",
"micro": "^9.3.3",
"raven": "^2.6.4",
"request": "^2.88.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}