forked from taylorgoolsby/mobx-location
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "mobx-location",
"version": "0.6.5",
"description": "minimal observable wrapper around browser location utilizing popstate event of HTML5 history api",
"module": "dist/mobx-location.es.js",
"main": "src/mobx-location.js",
"scripts": {
"build": "rollup -c",
"test": "node test/e2e.js",
"e2e": "cd test && parcel index.html",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capaj/mobx-location.git"
},
"keywords": [
"html5",
"location",
"history"
],
"author": "capajj@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/capaj/mobx-location/issues"
},
"homepage": "https://github.com/capaj/mobx-location#readme",
"peerDependencies": {
"mobx": "^4"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"mobx": "^4.5.0",
"parcel-bundler": "^1.10.1",
"puppeteer": "^1.8.0",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^4.0.3"
},
"dependencies": {
"history-events": "^1.0.4",
"query-string": "^6.2.0"
}
}