forked from pbeshai/react-url-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.64 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
107
108
109
110
{
"name": "react-url-query",
"version": "1.2.0",
"description": "A library for managing state through query parameters in the URL in React. Works well with or without Redux and React Router.",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"es",
"src"
],
"scripts": {
"clean": "rimraf lib dist es coverage",
"lint": "npm run lint:src && npm run lint:examples",
"lint:src": "eslint src test build",
"lint:examples": "eslint examples",
"test": "cross-env BABEL_ENV=commonjs jest",
"test:watch": "npm test -- --watch",
"test:cov": "npm test -- --coverage",
"test:examples": "babel-node examples/testAll.js",
"check:src": "npm run lint:src && npm run test",
"check:examples": "npm run build:examples && npm run lint:examples && npm run test:examples",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js dist/react-url-query.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/react-url-query.min.js",
"build:examples": "babel-node examples/buildAll.js",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"dev": "cross-env BABEL_ENV=commonjs babel src --watch --out-dir lib",
"prepublish": "npm run clean && npm run check:src && npm run build",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build -g pbeshai/react-url-query",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:pbeshai/react-url-query gh-pages --force"
},
"repository": {
"type": "git",
"url": "https://github.com/pbeshai/react-url-query.git"
},
"keywords": [
"react",
"url",
"query",
"query parameter",
"url search",
"state",
"redux",
"url reducer",
"middleware"
],
"author": "Peter Beshai <peter.beshai@gmail.com> (https://github.com/pbeshai)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pbeshai/react-url-query/issues"
},
"homepage": "https://github.com/pbeshai/react-url-query",
"devDependencies": {
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-jest": "15.0.0",
"babel-loader": "6.2.5",
"babel-plugin-transform-es2015-modules-commonjs": "6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "6.14.0",
"cross-env": "3.0.0",
"enzyme": "^2.4.1",
"eslint": "3.6.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"gitbook-cli": "^2.3.0",
"jest": "15.1.1",
"react": "^15.0.0",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"rimraf": "2.5.4",
"webpack": "1.13.2"
},
"peerDependencies": {
"react": "^15.0.0"
},
"dependencies": {
"loose-envify": "^1.2.0",
"prop-types": "^15.5.9",
"query-string": "^4.2.3"
},
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"browserify": {
"transform": [
"loose-envify"
]
},
"jest": {
"testPathDirs": [
"src"
]
}
}