forked from remix-run/history
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.93 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
{
"name": "history",
"version": "4.7.2",
"description": "Manage session history with JavaScript",
"repository": "ReactTraining/history",
"license": "MIT",
"author": "Michael Jackson",
"files": [
"DOMUtils.js",
"ExecutionEnvironment.js",
"LocationUtils.js",
"PathUtils.js",
"createBrowserHistory.js",
"createHashHistory.js",
"createMemoryHistory.js",
"createTransitionManager.js",
"es",
"index.js",
"umd"
],
"main": "index.js",
"module": "es/index.js",
"scripts": {
"start": "webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js",
"build": "node ./tools/build.js",
"prepublishOnly": "node ./tools/build.js",
"clean": "git clean -fdX .",
"lint": "eslint modules",
"test": "karma start --single-run"
},
"dependencies": {
"invariant": "^2.2.1",
"loose-envify": "^1.2.0",
"resolve-pathname": "^2.2.0",
"value-equal": "^0.4.0",
"warning": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-1": "^6.5.0",
"eslint": "^3.3.0",
"eslint-plugin-import": "^2.0.0",
"expect": "^21.0.0",
"gzip-size": "^3.0.0",
"jest-mock": "^21.0.0",
"karma": "^1.2.0",
"karma-browserstack-launcher": "^1.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"mocha": "^3.0.2",
"pretty-bytes": "^4.0.2",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"browserify": {
"transform": [
"loose-envify"
]
},
"keywords": [
"history",
"location"
]
}