-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"name": "lib-iitc-manager",
"version": "1.9.3",
"description": "Library for managing IITC plugins",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "NODE_ENV=test mocha --exit",
"test_with_webserver": "http-server ./test/fixtures/ -p 31606 -s & sleep 1 && NODE_ENV=test mocha --exit",
"webserver": "http-server ./test/fixtures/ -p 31606"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IITC-CE/lib-iitc-manager.git"
},
"author": "Ingress Intel Total Conversion - Community Edition (\"IITC-CE\")",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/IITC-CE/lib-iitc-manager/issues"
},
"homepage": "https://github.com/IITC-CE/lib-iitc-manager#readme",
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"http-server": "^14.1.0",
"mocha": "^9.2.2",
"node-fetch": "^3.2.3",
"prettier": "^2.7.1"
},
"dependencies": {
"@bundled-es-modules/deepmerge": "^4.3.1",
"xhr2": "^0.2.1"
}
}