-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 864 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
{
"name": "regex-game",
"version": "1.0.1",
"description": "A test on your regex knowledge",
"author": "Davide Dell'Erba <[email protected]> (https://github.com/delda)",
"repository": {
"type": "git",
"url": "https://github.com/delda/regex-game.git"
},
"license": "MIT",
"dependencies": {
"workshopper-adventure": "^6.0.2",
"workshopper-exercise": "^3.0.1",
"workshopper-verify-processor": "^0.0.2"
},
"devDependencies": {
"standard": "^10.0.2",
"standard-version": "^4.0.0",
"workshopper-adventure-test": "^1.1.2"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && support/mocha.js",
"release": "standard-version"
},
"bin": {
"regex-game": "bin/regex-game"
},
"main": "./regex-game.js",
"preferGlobal": true,
"standard": {
"ignore": [
"test"
]
}
}