-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.03 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
{
"name": "@kurier/addon-many-to-many",
"version": "0.0.3",
"description": "A Kurier addon that creates intermediate resource types for many-to-many relationships.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/kurierjs/kurier-addon-many-to-many"
},
"author": "Joel A. Villarreal Bertoldi <[email protected]>",
"bugs": {
"url": "https://github.com/kurierjs/kurier-addon-many-to-many/issues"
},
"homepage": "https://github.com/kurierjs/kurier-addon-many-to-many#readme",
"license": "MIT",
"scripts": {
"build": "rm -rf dist/ && tsc -b",
"prepublishOnly": "rm -rf dist/ && tsc -b",
"prepare": "install-peers"
},
"peerDependencies": {
"kurier": "^1.0.0"
},
"devDependencies": {
"install-peers-cli": "^2.2.0",
"prettier": "^2.1.2",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.0.5"
}
}