-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.26 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": "history-query-enhancer",
"version": "1.0.4",
"description": "Enhance session history with query property",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"lib",
"es",
"src",
"index.d.ts"
],
"scripts": {
"clean": "rimraf dist lib es coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx && tslint -p .",
"test": "jest --colors",
"test:coverage": "npm test -- --coverage",
"start": "tsc --outDir lib -w",
"build:es": "tsc --outDir es -d",
"build:commonjs": "tsc -m commonjs --outDir lib",
"build:dev-umd": "cross-env NODE_ENV=development rollup -c -i src/index.ts -o dist/history-query-enhancer.js",
"build:prod-umd": "cross-env NODE_ENV=production rollup -c -i src/index.ts -o dist/history-query-enhancer.min.js",
"build": "npm-run-all -p build:*",
"prepare": "npm run clean && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/yenshih/history-query-enhancer.git"
},
"keywords": [
"history",
"query",
"enhancer"
],
"authors": [
"Shi Yan <yenshih95@gmail.com> (https://github.com/yenshih)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/yenshih/history-query-enhancer/issues"
},
"npmName": "history-query-enhancer",
"dependencies": {},
"devDependencies": {
"@types/history": "^4.6.2",
"@types/jest": "^23.3.0",
"@types/qs": "^6.5.1",
"@types/query-string": "^6.1.0",
"@types/redux": "^3.6.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.1.0",
"eslint-plugin-import": "^2.13.0",
"history": "^4.7.2",
"husky": "^0.14.3",
"jest": "^23.4.1",
"lint-staged": "^7.2.0",
"npm-run-all": "^4.1.3",
"qs": "^6.5.2",
"query-string": "^6.1.0",
"redux": "^4.0.0",
"rollup": "^0.62.0",
"rollup-plugin-typescript2": "^0.15.1",
"rollup-plugin-uglify": "^4.0.0",
"ts-jest": "^22.4.6",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^2.9.2",
"typescript-eslint-parser": "^16.0.1"
},
"peerDependencies": {
"history": "^4.0.0"
},
"browserify": {
"transform": [
"loose-envify"
]
},
"sideEffects": false
}