-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.32 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": "api-first-spec",
"version": "2.0.6",
"description": "Describe API specification as a test",
"main": "./dist/api-first-spec.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint -p . || exit 1",
"compile": "tsc -p . || exit 1",
"watch": "npm-watch"
},
"watch": {
"lint": {
"patterns": [
"src"
],
"extensions": "ts",
"legacyWatch": true,
"quiet": false
},
"compile": {
"patterns": [
"src"
],
"extensions": "ts",
"legacyWatch": true,
"quiet": false
}
},
"repository": {
"type": "git",
"url": "https://github.com/shunjikonishi/api-first-spec.git"
},
"keywords": [
"api-first",
"test"
],
"author": "Shunji Konishi",
"license": "MIT",
"bugs": {
"url": "https://github.com/shunjikonishi/api-first-spec/issues"
},
"homepage": "https://github.com/shunjikonishi/api-first-spec",
"devDependencies": {
"@types/node": "^10.9.4",
"@types/request": "^2.47.1",
"@types/validator": "^9.4.1",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"npm-watch": "^0.7.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
},
"dependencies": {
"extend": "^3.0.2",
"moment": "^2.29.1",
"request": "^2.88.0",
"validator": "^13.5.2"
}
}