This repository was archived by the owner on Oct 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.75 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "routable-component",
"version": "5.1.0",
"description": "Routable component",
"keywords": [],
"main": "./dist/lib/routable-component.js",
"types": "./dist/lib/routable-component.d.ts",
"files": [
"dist",
"web"
],
"scripts": {
"dist": "npm run node && npm run web",
"node": "rm -rf dist && cross-env NODE_ENV=production webpack",
"web": "rm -rf web && cross-env NODE_ENV=production webpack --config ./webpack.config.web.js",
"lint": "npm run eslint && npm run tslint",
"eslint": "eslint *.js src test",
"tslint": "tslint tslint *.ts src/**/*.ts test/**/*.ts",
"test": "npm run test-node && npm run test-web",
"test-node": "cross-env NODE_ENV=test nyc mocha",
"test-web": "cross-env NODE_ENV=test karma start --single-run",
"docdist": "cd doc && git clean -fd && git rm -rf * && cd .. && npm run doc && cd doc && touch .nojekyll && git add . && git commit -m doc && git push",
"doc": "typedoc --mode modules --out doc --readme Readme.md --name \"API Document\" --disableOutputCheck --includeDeclarations --excludeNotExported src && cd doc && git status && cd .."
},
"dependencies": {
"babel-runtime": "^6.9.2"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.46",
"@types/power-assert": "^1.4.29",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-power-assert": "^1.0.0",
"babel-register": "^6.8.0",
"browserfs": "^1.0.0",
"cross-env": "^3.1.3",
"eslint": "^3.10.2",
"eslint-config-narazaka": "^1.0.1",
"eslint-loader": "^1.6.1",
"istanbul-instrumenter-loader": "^0.2.0",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.0.0",
"karma-detect-browsers": "^2.2.3",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-own-reporter": "^1.1.2",
"karma-opera-launcher": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"mocha": "^3.1.2",
"mocha-lazy-bdd": "^0.1.0",
"nyc": "^9.0.1",
"phantomjs-prebuilt": "^2.1.7",
"power-assert": "^1.4.1",
"ts-loader": "^1.0.0",
"ts-node": "^1.6.1",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.5",
"typedoc": "^0.5.1",
"typescript": "^2.1.1",
"webpack": "^1.13.3",
"webpack-config-narazaka-ts-js": "0.2.0"
},
"url": "https://github.com/Ikagaka/routable-component.js",
"author": "Narazaka",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ikagaka/routable-component.js.git"
}
}