-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "pouter",
"version": "0.1.0",
"description": "Yet another javascript router. Minimalistic, universal, and framework agnostic.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/tybro0103/pouter"
},
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- tests/**/*.js --compilers js:babel-register"
},
"keywords": [
"pouter",
"universal",
"isomorphic",
"javascript",
"router",
"react",
"redux",
"simple"
],
"author": "Tyler Brown <[email protected]> (http://tyler.tybro.io/)",
"license": "BSD-3-Clause",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.6.0",
"chai": "^3.5.0",
"coveralls": "^2.11.8",
"istanbul": "1.0.0-alpha.2",
"mocha": "^2.4.5"
},
"dependencies": {
"path-parser": "^1.0.2"
}
}