-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "kd",
"version": "1.0.1",
"main": "lib/index.js",
"bin": {
"kdx": "bin/cli.js"
},
"repository": "git+ssh://[email protected]/koding/node-kd.git",
"author": "Umut Sirin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koding/node-kd/issues"
},
"homepage": "https://github.com/koding/node-kd#readme",
"description": "Wrapper around kd cli tool to extend it.",
"scripts": {
"clean": "rm -rf lib",
"build:lib": "babel ./src --out-dir ./lib",
"build": "npm run build:lib",
"run-cli": "npm run build && babel-node bin/cli.js",
"test": "./node_modules/mocha/bin/_mocha --reporter spec --compilers js:babel-core/register",
"test:watch": "npm test -- --watch",
"prepublish": "npm run clean && npm run build",
"postpublish": "npm run clean"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-preset-env": "^1.2.1",
"babel-register": "^6.23.0",
"expect": "^1.20.2",
"mocha": "^3.2.0"
},
"directories": {
"test": "test"
},
"dependencies": {
"command-exists": "^1.2.2",
"git-toplevel": "^1.1.1",
"homedir": "^0.6.0",
"inquirer": "^3.0.6",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"ora": "^1.1.0",
"path-exists": "^3.0.0",
"require-all": "^2.2.0"
}
}