-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "@rope/server",
"version": "0.0.1",
"description": "Rope server",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf ./lib",
"start": "babel-node src/run.js",
"pretest": "npm run build",
"test": "jest src",
"test:watch": "npm test -- --watch",
"prebuild": "npm install && npm run clean",
"build": "babel src --out-dir lib --ignore test.js",
"build:watch": "babel src --watch --out-dir lib --ignore test.js",
"prepublishOnly": "npm test"
},
"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-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"jest": "^21.2.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "github.com/ropelive/server"
},
"keywords": [
"rope",
"kite",
"rpc",
"microservice"
],
"author": "Gokmen Goksel",
"license": "MIT",
"dependencies": {
"kite.js": "^1.0.13",
"ua-parser-js": "^0.7.14"
}
}