-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "qhistory",
"version": "1.1.0",
"description": "Wrap history with query support",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib",
"umd",
"es",
"LICENSE",
"*.md",
"index.d.ts"
],
"scripts": {
"prebuild": "rimraf lib umd es",
"build": "npm run build:lib && npm run build:umd && npm run build:min && npm run build:es",
"build:es": "cross-env BABEL_ENV=es babel ./src -d es",
"build:lib": "cross-env BABEL_ENV=cjs babel ./src -d lib",
"build:umd": "webpack --define process.env.NODE_ENV=\"'production'\" --output-filename=umd/qhistory.js",
"build:min": "webpack -p --optimize-minimize --output-filename=umd/qhistory.min.js",
"prepublish": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git://github.com/pshrmn/qhistory.git"
},
"keywords": [
"history",
"query",
"search"
],
"author": "Paul Sherman",
"license": "MIT",
"bugs": {
"url": "https://github.com/pshrmn/qhistory/issues"
},
"homepage": "https://github.com/pshrmn/qhistory#readme",
"peerDependencies": {
"history": ">=4.0.0"
},
"dependencies": {
"invariant": "^2.2.2"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"cross-env": "^3.1.4",
"history": "^5.0.0",
"jest": "^18.1.0",
"qs": "^6.3.0",
"rimraf": "^2.5.4",
"webpack": "^2.2.1"
}
}