-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"name": "inra-server-http",
"version": "1.4.2",
"description": "",
"license": "MIT",
"author": "Bartosz Łaniewski <[email protected]>",
"main": "dest/index.js",
"homepage": "https://github.com/ProjectInra/inra-server",
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectInra/inra-server.git"
},
"bugs": {
"url": "https://github.com/ProjectInra/inra-server/issues"
},
"scripts": {
"clean": "rm -rf ./dest",
"build": "babel ./src -d ./dest && npm run defs",
"watch": "babel ./src -d ./dest --watch",
"defs": "babel-node ./bin/defs.js",
"flow": "flow",
"test": "npm run flow && mocha --require babel-core/register",
"prepare": "npm run clean && npm run build"
},
"dependencies": {
"inra-server-container": "^1.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"flow-bin": "^0.83.0",
"fs-extra": "^7.0.0",
"glob": "^7.1.2",
"koa": "^2.5.1",
"koa-router": "^7.4.0",
"mocha": "^5.1.1"
}
}