-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.4 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "workshopper-adventure-test",
"version": "1.2.0",
"description": "A test system to test workshopper-adventures.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/standard",
"test": "npm run lint && npm run test:integration",
"test:integration": "bin/workshopper-adventure-test ./node_modules/learnyounode",
"release": "./node_modules/.bin/standard-version"
},
"keywords": [
"nodeschool",
"workshopper",
"adventure",
"test"
],
"bin": {
"workshopper-adventure-test": "./bin/workshopper-adventure-test"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach"
]
},
"author": "Martin Heidegger <[email protected]>",
"contributors": [
"Denys Dovhan <[email protected]> (http://denysdovhan.com)"
],
"license": "ISC",
"dependencies": {
"glob": "^7.1.6",
"lodash": "^4.17.15",
"mocha": "^7.1.1",
"rimraf": "^3.0.2",
"workshopper-adventure": "^6.1.0"
},
"devDependencies": {
"learnyounode": "^4.2.1",
"standard": "^14.3.3",
"standard-version": "^8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/workshopper/workshopper-adventure-test.git"
},
"bugs": {
"url": "https://github.com/workshopper/workshopper-adventure-test/issues"
},
"homepage": "https://github.com/workshopper/workshopper-adventure-test"
}