-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "nodebb-plugin-arma3-slotting",
"homepage": "https://github.com/gruppe-adler/nodebb-plugin-arma3-slotting",
"version": "6.2.1",
"repository": {
"type": "git",
"url": "https://github.com/gruppe-adler/nodebb-plugin-arma3-slotting"
},
"dependencies": {
"saxophone": "^0.8.0",
"uuid": "^9.0.0"
},
"engines": {
"node": ">=8.6.9"
},
"main": "./plugin.js",
"peerDependencies": {
"body-parser": "*",
"nodebb-plugin-attendance": "*",
"winston": "*"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/jasmine": "^2.8.17",
"@types/node": "^8.10.66",
"@types/uuid": "^7.0.4",
"jasmine": "^2.7.0",
"jasmine-spec-reporter": "^4.2.0",
"node-typescript": "^0.1.3",
"typescript": "^3.0.0",
"winston": "^3.3.3"
},
"nbbpm": {
"compatibility": "^2.0.0"
},
"scripts": {
"test": "npm run build && npm run test:run",
"test:run": "node_modules/.bin/jasmine --config=jasmine.json --helper=jasmine.js",
"build": "node_modules/.bin/tsc",
"build:watch": "node_modules/.bin/tsc -w",
"release:patch": "release-it -n",
"release:minor": "release-it minor -n",
"release:major": "release-it major -n"
}
}