-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.87 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
{
"name": "status-board-example",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:jameswlane/status-board-example.git",
"author": "James W. Lane <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node start",
"test": "jest --coverage --maxWorkers=4",
"test:ci": "jest --maxWorkers=4",
"test:coverage:ci": "jest --coverage --maxWorkers=4",
"test:coverage:codecov": "codecov",
"test:watch": "jest --watch",
"eslint": "eslint \"packages/**/*.js\"",
"eslint:fix": "eslint --fix \"packages/**/*.js\"",
"verify": "yarn verify:npmvet && yarn verify:david && yarn verify:nsp && yarn test",
"verify:ci": "yarn verify:npmvet && yarn verify:david && yarn verify:nsp && yarn test:coverage:ci",
"verify:npmvet": "npmvet --renderer ci --strict",
"verify:david": "david",
"verify:nsp": "nsp check --output summary",
"verify:check": "depcheck --ignores=@types/enzyme,@types/jest",
"setup": "npm i -g npmvet david nsp depcheck commitizen",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"keywords": [
"example"
],
"bugs": {
"url": "https://github.com/jameswlane/status-board-example/issues"
},
"homepage": "https://github.com/jameswlane/status-board-example#readme",
"dependencies": {
"ical": "0.6.0",
"status-board": "1.1.83"
},
"devDependencies": {
"codecov": "3.8.3",
"coveralls": "3.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.23.4",
"jest": "29.5.0",
"snyk": "1.1122.0"
},
"private": true,
"description": "A dashboard built for status board",
"engines": {
"npm": "~2.0.0",
"node": ">=0.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"snyk": true
}