-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "@cardboardrobots/route",
"version": "0.0.4",
"description": "Route formater and parser",
"repository": {
"url": "http://github.com/cardboardrobots/route"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "tsc",
"test": "npm run lint && npm run unit",
"clean": "rimraf ./dist",
"prepublishOnly": "rimraf ./dist && tsc --declaration",
"watch": "tsc --watch --declaration",
"unit": "jest --verbose --coverage",
"lint": "eslint 'src/**/*.ts' --fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@shopify/eslint-plugin": "40.1.0",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "26.5.4",
"typescript": "^4.2.4"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"<rootDir>/dist/"
]
}
}