-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 999 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
39
40
41
42
{
"name": "rope-kite",
"version": "0.0.1",
"description": "rope: registry for public kites",
"main": "rope.js",
"scripts": {
"clean": "rm -rf ./lib",
"start": "babel-node src/run.js",
"test": "jest src",
"test:watch": "npm test -- --watch",
"lint": "eslint .",
"prebuild": "npm run clean",
"build": "babel src --out-dir lib --ignore test.js",
"build:watch": "babel src --watch --out-dir lib --ignore test.js"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-jest": "^21.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.0",
"jest": "^21.2.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "github.com/koding/rope"
},
"keywords": [
"kite",
"rpc",
"microservice"
],
"author": "Gokmen Goksel",
"license": "MIT",
"dependencies": {
"kite.js": "^1.0.11",
"ua-parser-js": "^0.7.14"
}
}