-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "react-spa-router",
"version": "0.0.9",
"description": "React Spa Router",
"main": "dist/react-spa-router.js",
"typings": "types/index.d.ts",
"files": [
"dist/react-spa-router.js",
"dist/react-spa-router.min.js",
"dist/react-spa-router.min.gz",
"src",
"types/index.d.ts"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --inline --hot",
"build:webpack": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"build": "node build/build.js",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "karma start",
"test:browser": "webpack --config webpack.config.test"
},
"keywords": [
"react-spa-router",
"react",
"spa",
"sparouter",
"router"
],
"author": "romagny13 <romagny13@yahoo.fr>",
"repository": {
"type": "git",
"url": "git+https://github.com/romagny13/react-spa-router.git"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.38",
"@types/react": "^15.0.12",
"@types/react-dom": "^0.14.23",
"chai": "^3.5.0",
"karma": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^2.0.1",
"mocha": "^3.2.0",
"rollup": "^0.41.4",
"rollup-plugin-typescript": "^0.8.1",
"ts-loader": "^2.0.1",
"tslint": "^4.3.1",
"typescript": "^2.2.1",
"uglify-js": "^2.7.5",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
}
}