-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"name": "@nsftx/seven-gravity-gateway",
"private": false,
"version": "3.0.4",
"description": "Seven Gravity Gateway",
"homepage": "https://github.com/nsftx/seven-gravity-gateway",
"engines": {
"node": ">=18",
"npm": ">=10"
},
"scripts": {
"prepublish": "npm run build",
"build": "webpack",
"serve": "webpack -w",
"test": "mocha test test/index.js",
"test:watch": "mocha test test/index.js -w",
"coverage": "nyc npm run test",
"lint": "eslint src",
"precommit": "npm run lint",
"prepush": "npm run test"
},
"repository": {
"type": "git",
"url": "[email protected]:nsftx/seven-gravity-gateway.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"nsoft",
"seven",
"platform",
"gravity",
"gateway"
],
"author": "Ivan Pandzic <[email protected]>",
"contributors": [
"Jadranko Dragoje <[email protected]>"
],
"license": "UNLICENSED",
"devDependencies": {
"chai": "~4.3.7",
"chai-spies": "~1.0.0",
"clean-webpack-plugin": "^0.1.16",
"eslint": "^8.32.0",
"husky": "^0.14.3",
"jsdom": "~19.0.0",
"jsdom-global": "~3.0.2",
"mocha": "~9.2.2",
"nyc": "^15.1.0",
"sinon": "^12.0.1",
"uglifyjs-webpack-plugin": "~1.3.0",
"webpack": "^3.12.0"
}
}