-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 921 Bytes
/
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
{
"name": "jouter",
"version": "1.3.0",
"description": "JavaScript client-side routing",
"main": "dist/jouter.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"test:start": "jest --watch",
"build": "babel jouter.js -o dist/jouter.js",
"build:min": "babel jouter.js -o dist/jouter.min.js --minified",
"start": "http-server dist -o"
},
"keywords": [
"client-side",
"routing",
"spa"
],
"author": "Hajime Yamasaki Vukelic <hayavuk@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/foxbunny/jouter.git"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"http-server": "^0.9.0",
"jest": "^17.0.3"
},
"jest": {
"collectCoverage": true
}
}