-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.77 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@borestad/typescript-boilerplate",
"version": "0.0.1",
"license": "MIT",
"description": "A mean, clean & powerful boilerplate machine using typescript.",
"engines": {
"node": ">=6.5 <6.6",
"vscode": "1.6"
},
"scripts": {
"start": "yarn run test:watch",
"build": "tsc --noUnusedParameters",
"pretest": "rm -rf .code",
"test": "yarn run build && nyc ava && yarn run lint",
"lint": "tslint src/**/*.ts",
"test:watch": "DEBUG=ava:watcher ava --watch",
"test:failfast": "yarn run build && ava --fail-fast",
"test:ci": "snyk test && CI=1 npm test",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"include": [
".code/**/*.{js,jsx}"
],
"exclude": [
"node_modules/",
"dist/"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"report-dir": "./.tmp"
},
"ava": {
"files": [
".code/**/*.test.{js,jsx}",
"!**/*.{ts,tsx}"
],
"source": [
".code/**/*.{js,jsx}",
"!dist/**/*"
],
"concurrency": 5,
"failFast": true,
"tap": false,
"powerAssert": false,
"require": [
"ts-node/register"
]
},
"dependencies": {
"debug": "^3.0.0",
"lodash": "^4.17.4",
"tslint-config-standard": "^6.0.1"
},
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/lodash": "^4.14.74",
"@types/node": "^8.0.24",
"@types/power-assert": "1.4.29",
"ava": "^0.22.0",
"coveralls": "^2.11.15",
"nyc": "^11.1.0",
"power-assert": "^1.4.4",
"snyk": "^1.40.0",
"ts-node": "^3.3.0",
"tslint": "^5.6.0",
"typescript": "^2.4.2"
}
}