-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 958 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
{
"name": "workshopper-adventure-storage",
"version": "3.1.0",
"description": "Storage system for workshopper-adventure to store the preferences.",
"main": "index.js",
"scripts": {
"test": "standard --env mocha && nyc mocha --reporter=lcov -- -R spec",
"cov": " cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"files": [
"index.js",
"test/**"
],
"keywords": [
"workshopper",
"util"
],
"repository": {
"type": "git",
"url": "git+https://github.com/workshopper/workshopper-adventure-storage.git"
},
"author": "Ryan Kois",
"license": "MIT",
"eslintConfig": {
"extends": "standard",
"env": {
"node": true,
"mocha": true
}
},
"dependencies": {
"rimraf": "^3.0.2"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"mocha": "^7.1.1",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^15.0.0",
"standard": "^14.3.3"
}
}