-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.41 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "theo",
"version": "1.3.0",
"description": "Theo is your AuthorizedKeys manager",
"main": "index.js",
"repository": "theoapp/theo-node",
"scripts": {
"build": "babel -D src -d build",
"build:dev": "babel -D --watch src --out-dir build",
"clean": "rm -rf build",
"coverage": "cross-env NODE_ENV=test nyc mocha tests/testStandAlone*.js",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"start:dev": "nodemon --signal SIGTERM --watch .env --watch src --exec babel-node ./src/index.js",
"start": "node ./build/index.js",
"test": "mocha tests/test*.js",
"test:api": "mocha tests/testRest*",
"test:api:signed": "mocha tests/testSigned*",
"test:cluster": "mocha tests/testCluster.js",
"test:core": "mocha tests/testCore.js",
"test:core:restart": "mocha tests/testCoreOnRestart.js",
"test:core:noassignee": "mocha tests/testCoreNoAssignee.js",
"test:core:restart:noassignee": "mocha tests/testCoreOnRestartNoAssignee.js",
"test:standalone": "mocha tests/testStandAlone*.js",
"test:upgrade:mysql": "mocha tests/testUpgrade_mysql.js",
"test:upgrade:sqlite": "mocha tests/testUpgrade_sqlite.js",
"preversion": "npm run lint",
"version": "./scripts/updateVersion.sh"
},
"nodemonConfig": {
"delay": 2000
},
"author": "Michele Azzolari <[email protected]> (macno)",
"license": "Apache-2.0",
"dependencies": {
"@authkeys/microservice": "^2.4.3",
"@authkeys/mysql-connman": "^0.6.0",
"dotenv": "^8.2.0",
"memcached": "^2.2.2",
"node-fetch": "^2.6.1",
"redis": "^3.0.0",
"semver": "^7.3.4",
"sqlite3": "^5.0.0",
"sshpk": "^1.16.1"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/eslint-parser": "^7.13.4",
"@babel/node": "^7.13.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.8",
"@babel/register": "^7.13.8",
"@istanbuljs/nyc-config-babel": "^2.1.1",
"babel-plugin-istanbul": "^5.1.4",
"cross-env": "^5.2.0",
"mocha": "^6.2.3",
"mock-http-server": "^1.4.2",
"nyc": "^14.1.1",
"sinon": "^7.5.0"
},
"optionalDependencies": {
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-prettier": "^3.3.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
},
"nyc": {
"include": "src",
"exclude": "test"
}
}