-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "cli-router",
"version": "0.4.1",
"description": "cli-router",
"main": "lib/index.js",
"scripts": {
"start": "example/index.js",
"deploy": "./bin/npm-deploy",
"build:watch": "yarn build -- --watch",
"build": "babel ./src -s --out-dir lib",
"lint": "eslint src spec",
"test": "mocha --compilers js:babel-core/register ./spec",
"test:watch": "yarn test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/azukiapp/cli-router.git"
},
"bin": {},
"keywords": [
"azk",
"azuki",
"cli",
"router"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/azukiapp/cli-router/issues"
},
"homepage": "https://github.com/azukiapp/cli-router",
"dependencies": {
"docopt": "git+https://github.com/gullitmiranda/docopt.coffee.git#stable",
"ramda": "^0.24.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.5.0",
"chai-things": "^0.2.0",
"eslint": "^4.3.0",
"eslint-plugin-async-await": "^0.0.0",
"eslint-watch": "^3.1.2",
"mocha": "^3.5.0",
"source-map-support": "^0.4.15"
},
"engineStrict": true,
"engines": {
"node": ">= 4.0.0"
}
}