-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.86 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
{
"name": "@restmap/node",
"version": "0.1.1",
"description": "server-side restmap library for reducing json",
"types": "dist/app/index.d.ts",
"main": "dist/app/index.js",
"scripts": {
"build": "tsc --project tsconfig.production.json",
"clean": "del-cli ./dist",
"clean:build": "npm run clean && npm run build",
"coverage": "nyc npm test",
"commit": "git add . & cz -S",
"pack": "npm run clean && npm run build && npm pack",
"release:major": "standard-version -s --release-as major",
"release:minor": "standard-version -s --release-as minor",
"release:patch": "standard-version -s --release-as patch",
"test": "mocha --require ts-node/register 'src/tests' --config .mocharc.js --require source-map-support/register"
},
"keywords": [
"error",
"codes",
"error-codes",
"bugs",
"issue",
"error-code",
"code"
],
"repository": "https://github.com/restmap/restmap-node",
"author": "DawnImpulse",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/node": "14.14.31",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"chai": "4.3.3",
"cz-conventional-changelog": "3.3.0",
"del-cli": "^4.0.1",
"eslint": "7.27.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"mocha": "8.3.0",
"nyc": "15.1.0",
"prettier": "2.3.0",
"source-map-support": "0.5.19",
"standard-version": "9.1.1",
"ts-node": "9.1.1",
"typescript": "4.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}