forked from screepers/screeps-profiler
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 894 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
{
"name": "screeps-profiler",
"version": "2.0.1",
"description": "A profiler designed for use in the game of Screeps.",
"main": "screeps-profiler.js",
"scripts": {
"test": "npm run --silent lint && jest --coverage",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/screepers/screeps-profiler.git"
},
"keywords": [
"screeps",
"profiler"
],
"author": "Gary Borton <gdborton@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/screepers/screeps-profiler/issues"
},
"homepage": "https://github.com/screepers/screeps-profiler#readme",
"jest": {
"coverageReporters": [
"html",
"lcov"
]
},
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.0.2",
"eslint-plugin-react": "^4.1.0",
"jest": "^20.0.4"
}
}