-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 854 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 854 Bytes
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
{
"name": "dora-plugin-browser-history",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "https://github.com/dora-js/dora-plugin-browser-history"
},
"homepage": "https://github.com/dora-js/dora-plugin-browser-history",
"author": "qiang.mou <[email protected]>",
"license": "MIT",
"main": "./lib",
"scripts": {
"test": "istanbul cover _mocha -- test/index-test.js -R spec --no-timeouts",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"connect-history-api-fallback": "~1.2.0"
},
"devDependencies": {
"coveralls": "^2.11.6",
"dora": "0.4.x",
"expect.js": "~0.3.1",
"istanbul": "~0.4.2",
"mocha": "^2.3.4",
"phantomjs": "~2.1.3"
},
"peerDependencies": {
"dora": "0.4.x"
},
"files": [
"lib",
"package.json",
"README.md"
]
}