-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1013 Bytes
/
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
{
"name": "nerd-s-flashcards",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"directories": {
"test": "tests"
},
"devDependencies": {
"env2": "^2.2.0",
"istanbul": "^0.4.5",
"nodemon": "^1.11.0",
"pg": "^7.1.2",
"pre-commit": "^1.2.2",
"shot": "^3.4.2",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"scripts": {
"test": "NODE_ENV=test node src/database/db_build.js && NODE_ENV=test node tests/db.test.js | tap-spec",
"lint": "semistandard --fix"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FACG2/Nerd-s-flashCards.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACG2/Nerd-s-flashCards/issues"
},
"homepage": "https://github.com/FACG2/Nerd-s-flashCards#readme",
"dependencies": {
"cookie": "^0.3.1",
"jsonwebtoken": "^7.4.3",
"path": "^0.12.7",
"querystring": "^0.2.0",
"semistandard": "^11.0.0"
}
}