forked from covidatlas/li
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "li",
"version": "0.0.0",
"scripts": {
"start": "arc sandbox",
"lint": "eslint . --ignore-pattern node_modules --fix",
"test": "tape tests/**/*-test.js | tap-spec",
"test:unit": "tape tests/unit/**/*-test.js | tap-spec",
"test:integration": "tape tests/integration/**/*-test.js | tap-spec"
},
"humans": [
"This is a serverless monorepo",
"All root deps are considered dev dependencies"
],
"devDependencies": {
"@architect/architect": "^6.3.5",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.5",
"is": "^3.3.0",
"lint-staged": "^10.1.5",
"ospath": "^1.2.2",
"puppeteer": "^2.1.1",
"tap-spec": "^5.0.0",
"tape": "^4.13.2",
"yargs": "^15.3.1"
},
"author": "Ryan Block <hello@ryanblock.com>",
"license": "Apache-2.0",
"engines": {
"node": ">=12.15.0 <13.0.0"
},
"husky": {
"hooks": {
"pre-commit": "PAUSE=true ./scripts/pause-sandbox && lint-staged && PAUSE=false ./scripts/pause-sandbox",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}