-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1 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
{
"name": "mdbook-nodejs-preprocessor-builder",
"version": "0.0.2",
"author": "Paul Nann (pnann)",
"license": "MIT",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"build": "tsc",
"test": "tsc && nyc npx umbra",
"lint": "tslint --project .",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"all": "npm run build && npm run test && npm run lint && npm run coveralls"
},
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"cache": true,
"check-coverage": true,
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"tst",
"coverage",
".umbra-cache",
"umbra.config.js"
],
"reporter": [
"lcov",
"text",
"html"
]
},
"dependencies": {
"logfmt": "^1.3.2"
},
"devDependencies": {
"@types/logfmt": "^1.2.1",
"@types/node": "^14.0.14",
"nyc": "^15.1.0",
"typescript": "^3.9.5",
"umbra-test": "0.0.9"
}
}