-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "universal-route-defs",
"version": "2.0.3",
"description": "Simple utility that allows a full stack JavaScript application to easily declare nested routes and retrieve the corresponding URL paths in a shared module.",
"main": "index.js",
"scripts": {
"build": "babel src/index.js --out-file index.js",
"clean": "rm index.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angushtlam/universal-route-defs.git"
},
"keywords": [
"shared",
"urls",
"routes",
"route",
"nested",
"utility",
"util"
],
"author": "Angus Lam <[email protected]> (https://angus.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/angushtlam/universal-route-defs/issues"
},
"homepage": "https://github.com/angushtlam/universal-route-defs#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"assert": "^1.4.1",
"mocha": "^6.0.2"
}
}