-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "",
"description": "",
"repository": "",
"homepage": "",
"author": "",
"keywords": [],
"private": true,
"version": "0.0.1",
"engines": {
"node": ">=13.2.0"
},
"main": "./build/index.js",
"files": [
"build/lib/**/*",
"build/index.*",
"build/types/**/*"
],
"scripts": {
"test": "npm run build && mocha --inspect --require source-map-support/register --bail ./build/test/",
"build": "rimraf build && tsc && tsc-alias",
"preversion": "npm run lint && npm run build && npm test",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && npm run format && git add -A",
"postversion": "git push --follow-tags && npm publish",
"lint": "eslint --ext ts,js --fix src",
"format": "prettier src/**/*.ts -w",
"build-live": "tsc -w && tsc-alias -w"
},
"license": "MIT",
"dependencies": {
"commander": "^7.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/fs-extra": "^9.0.11",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"chai": "^4.3.4",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.27.0",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^10.0.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"tsc-alias": "^1.2.11",
"typescript": "next"
}
}