-
Notifications
You must be signed in to change notification settings - Fork 227
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "fluxible-router",
"version": "2.0.2",
"description": "Routing for Fluxible applications",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"repository": {
"type": "git",
"url": "git://github.com/yahoo/fluxible.git"
},
"scripts": {
"clean": "rm -rf dist",
"dist": "npm run clean && npm run dist:commonjs && npm run dist:es",
"dist:commonjs": "../../node_modules/.bin/babel --root-mode upward --env-name commonjs src -d dist/cjs",
"dist:es": "../../node_modules/.bin/babel --root-mode upward --env-name es src -d dist/es",
"precover": "npm run dist",
"prepublish": "npm run dist",
"pretest": "npm run dist",
"test": "../../node_modules/.bin/jest -c ../../jest.config.js",
"cover": "../../node_modules/.bin/jest -c ../../jest.config.js --coverage",
"lint": "../../node_modules/.bin/eslint **/*.js"
},
"author": "Lingyan Zhu <lingyan@yahoo-inc.com>",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yahoo/fluxible/blob/master/LICENSE.md"
}
],
"dependencies": {
"@babel/runtime": "^7.14.0",
"fluxible-addons-react": "^1.0.0",
"hoist-non-react-statics": "^3.3.2",
"prop-types": "^15.7.2",
"routr": "^3.0.1"
},
"peerDependencies": {
"fluxible": "^1.0.0",
"react": "^16.3.0 || ^17.0.0"
},
"keywords": [
"flux",
"fluxible",
"history",
"navigation",
"react",
"router"
],
"pre-commit": [
"lint",
"test"
]
}