-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.05 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.05 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
{
"name": "react-thrux-router",
"version": "0.0.0-development",
"description": "Cross Browser router for React",
"main": "dist/react-thrux-router.js",
"scripts": {
"precommit": "npm run lint",
"lint": "eslint src --ext .jsx,.js",
"lint:test": "eslint __test__ --ext .js",
"gitc": "git add . && git-cz",
"dependencies": "npm install thrux react react-thrux lodash prop-types",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:dev": "webpack",
"build:prod": "NODE_ENV=production webpack -p"
},
"repository": {
"type": "git",
"url": "https://github.com/Thram/react-thrux-router.git"
},
"keywords": [
"react",
"thrux",
"router"
],
"author": "Thram <thramposo@gmail.com> (https://thram.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Thram/react-thrux-router/issues"
},
"homepage": "https://github.com/Thram/react-thrux-router#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.24.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"husky": "^0.13.3",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.2",
"umd": "^3.0.1",
"webpack": "^2.3.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"peerDependencies": {
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-thrux": "^2.3.8",
"thrux": "^3.2.1"
},
"dependencies": {
"lodash": "^4.17.4",
"qs": "^6.4.0",
"url-pattern": "^1.0.3"
}
}