-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 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
{
"name": "faucet-authenticator",
"version": "1.0.1",
"description": "Twitter authenticator for faucet",
"type": "commonjs",
"main": "src/server.js",
"scripts": {
"start": "node -r dotenv/config src/server.js",
"dev": "nodemon -r dotenv/config src/server.js",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"test": "mocha --full-trace --recursive test --exit -r dotenv/config dotenv_config_path=./.env.test",
"test:jenkins": "c8 --require mocha --no-clean --reporter=lcov npm run test",
"version": "echo $npm_package_version"
},
"author": "Symbol Contributors <[email protected]>",
"license": "ISC",
"keywords": [],
"dependencies": {
"dotenv": "^16.3.1",
"jsonwebtoken": "^9.0.1",
"restify": "11.1.0",
"restify-errors": "^8.0.2",
"twitter-api-v2": "^1.15.1"
},
"devDependencies": {
"assert-plus": "^1.0.0",
"c8": "^10.1.2",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"mocha": "^11.0.1",
"nodemon": "^3.0.1",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"supertest": "^7.0.0"
}
}