-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "@yummy/named-routes",
"version": "1.1.0",
"description": "Create named route functions, e.g. taskRoute(\"123\") /* => /tasks/123 */",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch --noEmit",
"lint": "eslint . --ignore-path .gitignore",
"prerelease": "npm run lint && npm run test && npm run build",
"release": "standard-version",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rudionrails/yummy-named-routes.js.git"
},
"keywords": [
"named route",
"route matching",
"routes",
"routing"
],
"author": "Rudolf Schmidt",
"license": "MIT",
"bugs": {
"url": "https://github.com/rudionrails/yummy-named-routes.js/issues"
},
"homepage": "https://github.com/rudionrails/yummy-named-routes.js#readme",
"dependencies": {
"query-string": "^7.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.19",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.3.0",
"standard-version": "^9.0.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}