forked from yesmeck/safe-routes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 966 Bytes
/
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
{
"name": "remix-routes",
"version": "0.1.1",
"description": "",
"main": "lib/index.js",
"types": "index.d.ts",
"bin": {
"remix-routes": "lib/cli.js"
},
"files": [
"lib",
"!lib/__tests__",
"index.d.ts"
],
"scripts": {
"watch": "tsc --watch",
"prebuild": "rm -rf lib",
"build": "tsc",
"prepack": "npm run build",
"test": "jest",
"semantic-release": "semantic-release"
},
"keywords": [],
"author": "Wei Zhu",
"license": "MIT",
"devDependencies": {
"@remix-run/dev": "^1.6.4",
"@types/cli-table": "^0.3.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@types/pluralize": "^0.0.29",
"jest": "^27.4.4",
"semantic-release": "^18.0.1",
"ts-jest": "^27.1.1",
"typescript": "^4.5.3"
},
"dependencies": {
"chokidar": "^3.5.2",
"meow": "9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yesmeck/remix-routes.git"
}
}