-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "addressbar",
"version": "0.0.0-semantically-released",
"description": "Makes the addressbar of the browser work just like a normal input",
"main": "index.js",
"scripts": {
"prestart": "npm run build",
"start": "python -m SimpleHTTPServer 3001",
"pretest": "npm run lint && npm run build",
"test": "nodeunit tests/index.js",
"build": "webpack",
"lint": "standard",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/cerebral/addressbar.git"
},
"keywords": [
"router",
"history",
"url",
"reactive"
],
"author": "Christian Alfoni <[email protected]>",
"contributors": [
"Aleksey Guryanov <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cerebral/addressbar/issues"
},
"homepage": "https://github.com/cerebral/addressbar#readme",
"devDependencies": {
"commitizen": "^2.5.0",
"cz-customizable": "^2.7.0",
"ghooks": "^1.0.3",
"nodeunit": "^0.9.1",
"selenium-webdriver": "^2.46.1",
"semantic-release": "^4.3.5",
"standard": "^5.4.1",
"validate-commit-msg": "^1.0.0",
"webpack": "^1.12.1"
},
"dependencies": {
"eventemitter3": "^2.0.2",
"url-parse": "^1.0.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"ghooks": {
"commit-msg": "validate-commit-msg"
}
}
}