-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
66 lines (66 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
62
63
64
65
66
{
"name": "react-router-sitemap",
"version": "1.2.0",
"description": "Module to generate a sitemap for react-router configuration",
"repository": {
"type": "git",
"url": "https://github.com/kuflash/react-router-sitemap.git"
},
"keywords": [
"react",
"react-router",
"sitemap",
"es2015"
],
"main": "index.es5.js",
"jsnext:main ": "index.js",
"scripts": {
"lint": "eslint --ext .js,.jsx ./config ./example ./lib ./test",
"test": "karma start ./config/karma.config.js",
"build": "npm run lint && npm run test && webpack --config ./config/build.config.js",
"example": "cd example && node ./sitemap-builder.js",
"documentation": "documentation build ./lib ./lib/routes-creater ./lib/routes-parser ./lib/paths-filter ./lib/params-applier ./lib/sitemap-builder -f md > api.md",
"prepublish": "npm run build"
},
"author": "Igor Uvarov <[email protected]> (http://kuflash.ru)",
"license": "MIT",
"files": [
"index.js",
"index.es5.js",
"lib"
],
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"documentation": "git://github.com/documentationjs/documentation.git#v4.0.0-beta5",
"eslint": "^2.10.1",
"eslint-plugin-react": "^5.1.1",
"jasmine-collection-matchers": "^0.2.0",
"jasmine-core": "^2.4.1",
"jasmine-expect": "^2.0.2",
"karma": "^0.13.22",
"karma-cli": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-jasmine-matchers": "^2.0.2",
"karma-minimalist-reporter": "^0.2.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"phantomjs-prebuilt": "^2.1.7",
"webpack": "^1.13.0",
"webpack-node-externals": "^1.2.0"
},
"peerDependencies": {
"react": "^15.1.0 || ^16.0.0",
"react-router": "^2.3.0 || ^3.2.1 || ^4.3.0"
},
"dependencies": {
"sitemap": "^1.6.0"
}
}