-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.39 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
55
56
57
58
59
60
{
"name": "itineris",
"version": "0.1.0",
"description": "",
"main": "dist/src/router-ctl.js",
"engines": {
"node": ">=6.9.5"
},
"repository": {
"type": "git",
"url": "alexkorotkikh/itineris"
},
"license": "AFL-2.0",
"bugs": {
"url": "https://github.com/alexkorotkikh/itineris/issues"
},
"devDependencies": {
"@types/chai": "^4.0.3",
"@types/mocha": ">=2.2.33",
"chai": "^4.1.1",
"mocha": ">=2.5.3",
"rimraf": "^2.6.1",
"ts-node": "^3.3.0",
"tsc-watch": "^1.0.7",
"tslint": "^5.6.0",
"typescript": ">=2.1.5"
},
"dependencies": {
"@types/classnames": ">=0.0.32",
"@types/fs-extra": ">=3.0.0",
"@types/uuid": "^3.4.0",
"@types/request-promise": "4.1.37",
"@types/winston": ">=0.0.32",
"@types/yargs": "^8.0.2",
"ipaddress": "^0.2.5",
"promise-etcd": ">=2.1.1",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"rxjs": "^5.4.3",
"uuid": ">=3.1.0",
"winston": ">=2.2.0",
"yargs": "^9.0.1"
},
"publishConfig": {
"tag": "next"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"pretest": "npm run build",
"lint": "tslint --project .",
"test": "mocha --require dist/test/etcd-daemon.js dist/test/*-test.js --exit"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}