-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
106 lines (106 loc) · 3.61 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "redux-first-router",
"version": "2.1.1",
"description": "think of your app in states not routes (and, yes, while keeping the address bar in sync)",
"main": "dist/index.js",
"module": "dist/es",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "babel src -d dist",
"build:es": "BABEL_ENV=es babel src -d dist/es",
"build:umd": "BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js -o dist/redux-first-router.js",
"build:umd:min": "BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js -o dist/redux-first-router.min.js",
"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": "npm run flow-copy && flow; test $? -eq 0 -o $? -eq 2",
"clean": "rimraf dist && mkdir dist && rimraf coverage",
"test": "jest",
"lint": "eslint --fix ./",
"format": "prettier --single-quote --parser=flow --semi=false --write '{src,__tests__,__test-helpers__}/**/*.js' && npm run lint",
"cm": "git-cz",
"semantic-release": "npx semantic-release",
"standard-version": "node_modules/.bin/standard-version",
"local-semantic-release": "git checkout master; git pull origin master && npm run standard-version && git push --follow-tags origin master && npm publish",
"prepublishOnly": "npm run clean && npm run build && npm run flow-copy && npm run build:umd && npm run build:umd:min && npm run build:es"
},
"repository": {
"type": "git",
"url": "https://github.com/faceyspacey/redux-first-router.git"
},
"author": "James Gillmore <[email protected]>",
"maintainers": [
"Zack Jackson <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/faceyspacey/redux-first-router/issues"
},
"homepage": "https://github.com/faceyspacey/redux-first-router#readme",
"dependencies": {
"rudy-history": "^1.0.0",
"rudy-match-path": "^0.3.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-flow": "6.23.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.2.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-plugin-flowtype": "2.50.3",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "6.10.3",
"flow-bin": "0.121.0",
"flow-copy-source": "2.0.9",
"husky": "4.2.3",
"jest": "25.1.0",
"lint-staged": "10.0.8",
"prettier": "2.0.2",
"query-string": "6.12.1",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"rimraf": "3.0.2",
"semantic-release": "17.2.3",
"snyk": "1.303.1",
"standard-version": "8.0.1",
"travis-github-status": "1.6.3",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
"peerDependencies": {
"redux": "*"
},
"jest": {
"verbose": true,
"silent": true,
"testURL": "http://localhost:3000",
"setupTestFrameworkScriptFile": "./__test-helpers__/setupJest.js",
"moduleFileExtensions": [
"js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"prettier --single-quote --parser=flow --semi=false --write",
"eslint --fix",
"git add"
]
}
}