-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"version": "2.3.2",
"name": "little-router",
"description": "A lightweight universal router",
"author": " <aribouius@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/aribouius/little-router",
"repository": {
"type": "git",
"url": "https://github.com/aribouius/little-router.git"
},
"bugs": {
"url": "https://github.com/aribouius/little-router/issues"
},
"main": "index.js",
"scripts": {
"clean": "rm -rf lib",
"build": "babel -d lib src",
"build:watch": "yarn run build -- --watch",
"test": "mocha --compilers js:babel-core/register --recursive",
"test:watch": "yarn run test -- --watch",
"lint": "eslint src",
"lint:fix": "yarn run lint -- --fix",
"preversion": "yarn run lint && yarn run test",
"version": "yarn run build && git add -A lib",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^3.9.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"sinon": "^1.17.3"
},
"dependencies": {
"babel-runtime": "^6.22.0",
"path-to-regexp": "^1.6.0"
},
"keywords": [
"router",
"routing",
"routes",
"route"
]
}