-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.54 KB
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": "@commonninja/types",
"version": "0.0.0-development",
"description": "A utils lib for Common Ninja Integrations",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"files": [
"dist",
"scripts",
"swagger/openapi.yml"
],
"scripts": {
"clean": "rimraf dist/*",
"test": "jest",
"lint": "tslint --config tslint.json './{lib}/**/*.ts'",
"build": "npm run build:lib:compile",
"build:lib:compile": "tsc",
"prepare": "npm run lint && npm run build",
"prebuild": "npm run clean",
"start": "npm run test && npm run build && node dist/lib/index.js",
"release": "semantic-release",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CommonNinja/commonninja-types.git"
},
"keywords": [
"Utils"
],
"author": "Daniel Sternlicht",
"license": "ISC",
"bugs": {
"url": "https://github.com/CommonNinja/commonninja-types/issues"
},
"homepage": "https://github.com/CommonNinja/commonninja-types#readme",
"dependencies": {
"bunyan": "^1.8.12",
"bunyan-debug-stream": "^2.0.0",
"dotenv": "^6.2.0",
"path": "^0.12.7"
},
"devDependencies": {
"@types/bunyan": "^1.8.5",
"@types/jest": "^23.3.13",
"@types/node": "^10.12.18",
"jest": "^24.5.0",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.1",
"ts-jest": "^23.10.5",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.9.5"
},
"peerDependencies": {},
"directories": {
"lib": "lib"
}
}