-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "singleton-router",
"version": "2.0.1",
"description": "Tiny singleton router for the browser",
"main": "index.js",
"repository": "YerkoPalma/singleton-router",
"files": [
"index.js",
"dist/bundle.js",
"dist/bundle.web.js",
"dist/bundle.web.min.js"
],
"scripts": {
"test": "standard --verbose | snazzy && tape test.js | tap-summary",
"build": "mkdir -p dist && squash index.js > dist/bundle.js && npm run build:standalone",
"build:standalone": "mkdir -p dist && browserify -e index.js -o dist/bundle.web.js -s RouterSingleton && squash dist/bundle.web.js > dist/bundle.web.min.js",
"start": "budo dist/bundle.js:app.js --verbose --pushstate -p 8080 -H '0.0.0.0' -- -t es2040 -t rollupify -s RouterSingleton"
},
"standard": {
"ignore": [
"dist/"
]
},
"keywords": [
"router",
"client-router",
"browser",
"web",
"singleton"
],
"author": "Yerko Palma <[email protected]>",
"license": "MIT",
"dependencies": {
"url-pattern": "^1.0.3"
},
"devDependencies": {
"browserify": "^14.1.0",
"budo": "^10.0.3",
"butternut": "^0.4.5",
"global": "^4.3.1",
"inherits": "^2.0.3",
"sinon": "^2.1.0",
"snazzy": "^7.0.0",
"standard": "^10.0.2",
"tap-summary": "^3.0.1",
"tape": "^4.6.3"
}
}