-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
40 lines (40 loc) · 924 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
{
"name": "paper-pi",
"version": "1.0.1",
"main": "index.js",
"repository": "[email protected]:lukehaas/paper-pi.git",
"author": "lukehaas <[email protected]>",
"license": "GPL",
"scripts": {
"test": "jest --verbose",
"lint": "eslint index.js \"src/**/*.js\"",
"build": "node ./src/index.js",
"start": "node ./src/server.js"
},
"dependencies": {
"battery-level": "^3.0.0",
"bmp-js": "^0.0.3",
"canvas": "^2.5.0",
"dark-sky": "^1.1.2",
"dotenv": "^4.0.0",
"moment": "^2.19.4",
"mongoose": "^5.7.5",
"node-fetch": "^1.7.3",
"ramda": "^0.25.0",
"shapely-canvas": "^1.0.3",
"twit": "^2.2.9",
"winston": "^2.4.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"jest": "^24.9.0",
"mockingoose": "^2.4.0"
},
"jest": {
"testEnvironment": "node",
"roots": [
"<rootDir>",
"<rootDir>/test"
]
}
}