-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.42 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
{
"name": "@status-board/cli",
"version": "0.0.0-development",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"clean": "rimraf lib coverage",
"commit": "git-cz",
"commitmsg": "opt --in commit-msg --exec \"commitlint -e $GIT_PARAMS\"",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"precommit": "lint-staged && opt --in pre-commit --exec \"npm run verify\"",
"semantic-release": "semantic-release",
"test": "jest --coverage",
"test:ci": "jest --ci",
"test:coverage:ci": "jest --ci --coverage",
"test:coverage:codecov": "codecov",
"test:watch": "jest --watch",
"ts:build": "tsc",
"eslint": "eslint src/**/*",
"eslint:fix": "eslint --fix src/**/*",
"ts:watch": "tsc -w",
"verify": "npm run verify:npmvet && npm run verify:david && npm run verify:audit && npm run verify:tscheck && npm run tslint && npm run test",
"verify:circleci": "circleci config validate",
"verify:ci": "npm run verify:npmvet && npm run verify:audit && npm run test:ci",
"verify:check": "depcheck",
"verify:david": "david",
"verify:npmvet": "npmvet --renderer ci --strict",
"verify:audit": "npm audit fix",
"verify:tscheck": "types-checker"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/preset-typescript": "7.3.3",
"@types/jest": "24.0.15",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"all-contributors-cli": "6.7.0",
"codecov": "3.5.0",
"commitizen": "3.1.1",
"cz-conventional-changelog": "2.1.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.2.0",
"eslint-plugin-import": "2.18.0",
"jest": "24.8.0",
"lint-staged": "9.2.1",
"npmvet": "0.1.5",
"semantic-release": "15.13.18",
"ts-jest": "24.0.2",
"typescript": "3.5.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}