-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
41 lines (41 loc) · 995 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
{
"name": "affirmations",
"version": "0.0.0",
"description": "an api for getting affirmations",
"main": "index.js",
"scripts": {
"test": "jest --coverage --forceExit",
"start": "node index.js",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/annthurium/affirmations.git"
},
"engines": {
"node": "8.0.0"
},
"author": {
"name": "tilde",
"twitter": "@annthurium"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/annthurium/affirmations/issues"
},
"homepage": "https://github.com/annthurium/affirmations#readme",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"jest": "^25.2.3",
"supertest": "^4.0.2",
"weallbehave": "^1.2.0"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}