-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "@kingga/kc-routing",
"version": "1.0.0",
"description": "A routing component for the kings collection.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/kingga/kc-routing.git",
"author": "Isaac Skelton <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/express": "^4.17.2",
"@types/highlightjs": "^9.12.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"axios": "^0.19.0",
"chai": "^4.2.0",
"copy-webpack-plugin": "^5.0.5",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"scripts": {
"test": "nyc mocha 'tests/**/*.ts' --require ts-node/register",
"lint": "eslint ./src/**/*.ts",
"fix": "eslint ./src/**/*.ts --quiet --fix",
"build": "yarn tsc",
"prepublish": "yarn build && yarn test"
},
"dependencies": {
"express": "^4.17.1"
}
}