-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.93 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "redux-first-router-scroll-container",
"version": "0.0.0-development",
"description": "think of your app in states not routes (and, yes, while keeping the address bar in sync)",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"build:umd": "BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js dist/redux-first-router-scroll-container.js",
"build:umd:min": "BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/redux-first-router-scroll-container.min.js",
"test": "jest",
"flow-copy": "flow-copy-source src dist",
"flow-watch": "clear; printf \"\\033[3J\" & npm run flow & fswatch -o ./ | xargs -n1 -I{} sh -c 'clear; printf \"\\033[3J\" && npm run flow'",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"lint": "eslint --fix ./",
"format": "prettier --single-quote --semi=false --write '{src,__tests__}/**/*.js' && npm run lint",
"precommit": "lint-staged --verbose && npm test",
"commit": "git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"prepublish": "npm run build && npm run flow-copy && npm run build:umd && npm run build:umd:min"
},
"repository": {
"type": "git",
"url": "https://github.com/faceyspacey/redux-first-router-scroll-container.git"
},
"author": "James Gillmore <james@faceyspacey.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/faceyspacey/redux-first-router-scroll-container/issues"
},
"homepage": "https://github.com/faceyspacey/redux-first-router-scroll-container#readme",
"dependencies": {
"scroll-behavior": "^0.9.3",
"warning": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-flow-react-proptypes": "^2.1.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"flow-bin": "^0.45.0",
"flow-copy-source": "^1.1.0",
"history": "^4.5.1",
"husky": "^0.13.2",
"jest": "^19.0.2",
"lint-staged": "^3.4.0",
"prettier": "^1.2.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"redux-first-router": "^1.1.0",
"semantic-release": "^6.3.2",
"travis-github-status": "^1.4.0",
"webpack": "2.4.1"
},
"peerDependencies": {
"redux-first-router": "*"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"prettier --single-quote --semi=false --write",
"eslint --fix",
"git add"
]
}
}