-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
59 lines (59 loc) · 1.3 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
{
"name": "@godaddy/terminus",
"version": "0.0.0-development",
"description": "",
"main": "index.js",
"types": "./typings/index.d.ts",
"scripts": {
"test-typings": "tsc --lib ES2015 --noEmit typings/*.ts",
"test": "mocha index.spec.js lib/**/*.spec.js && npm run test-typings && npm run lint",
"lint": "standard --fix --env mocha",
"coverage": "nyc mocha index.spec.js lib/**/*.spec.js",
"semantic-release": "semantic-release"
},
"files": [
"lib",
"typings",
"index.js",
"LICENSE",
"README",
"package.json",
"package-lock.json"
],
"repository": {
"type": "git",
"url": "https://github.com/godaddy/terminus.git"
},
"keywords": [],
"author": {
"name": "Gergely Nemeth",
"url": "https://nemethgergely.com"
},
"license": "MIT",
"dependencies": {
"stoppable": "^1.1.0"
},
"devDependencies": {
"@types/express": "^4.0.39",
"@types/koa": "^2.0.42",
"@types/node": "^12.0.0",
"chai": "^4.1.2",
"express": "^4.16.2",
"mocha": "^10.0.0",
"node-fetch": "^2.6.7",
"nyc": "^15.0.0",
"pre-commit": "^1.2.2",
"semantic-release": "^19.0.5",
"standard": "^17.0.0",
"typescript": "^3.9.9"
},
"pre-commit": [
"lint",
"test"
],
"release": {
"branches": [
"main"
]
}
}