forked from troch/route-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.04 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "route-node",
"version": "1.8.5",
"description": "A package to create a tree of named routes",
"main": "dist/commonjs/route-node.js",
"jsnext:main": "modules/RouteNode.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register --recursive 'test/main.js'",
"test:cover": "babel-node node_modules/.bin/isparta cover node_modules/.bin/_mocha -- --recursive 'test/main.js'",
"lint": "eslint modules/*.js",
"build:amd": "rollup -c rollup.config.js --format amd",
"build:umd": "rollup -c rollup.config.js --format umd",
"build:cjs": "mkdirp dist/commonjs && babel modules/RouteNode.js -o dist/commonjs/route-node.js",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:amd && npm run build:umd && npm run build:cjs",
"clog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "https://github.com/troch/route-node.git"
},
"keywords": [
"route tree",
"named route",
"route matching"
],
"author": "Thomas Roch",
"license": "ISC",
"bugs": {
"url": "https://github.com/troch/route-node/issues"
},
"homepage": "https://github.com/troch/route-node",
"devDependencies": {
"babel-cli": "~6.24.1",
"babel-core": "~6.24.1",
"babel-eslint": "~7.2.3",
"babel-plugin-add-module-exports": "~0.2.1",
"babel-plugin-transform-class-properties": "~6.24.1",
"babel-plugin-transform-export-extensions": "~6.22.0",
"babel-plugin-transform-object-rest-spread": "~6.23.0",
"babel-preset-es2015": "~6.24.1",
"babel-preset-es2015-rollup": "~3.0.0",
"conventional-changelog": "~1.1.3",
"coveralls": "~2.13.1",
"eslint": "~3.19.0",
"isparta": "~4.0.0",
"lodash.omit": "~4.5.0",
"mkdirp": "~0.5.1",
"mocha": "~3.4.1",
"rimraf": "~2.6.1",
"rollup": "~0.41.6",
"rollup-plugin-babel": "~2.7.1",
"rollup-plugin-node-resolve": "~3.0.0",
"should": "~11.2.1",
"yargs": "~8.0.1"
},
"dependencies": {
"path-parser": "2.0.2",
"search-params": "~1.3.0"
}
}