-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.13 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
55
56
{
"name": "castles",
"version": "2.0.0",
"description": "A competitive logic puzzle useful for teaching",
"keywords": [
"castles",
"riddler",
"puzzle"
],
"main": "index.js",
"engines": {
"node": "^6.x"
},
"homepage": "https://github.com/ecowden/castles",
"repository": {
"type": "git",
"url": "git://github.com/ecowden/castles.git"
},
"dependencies": {},
"devDependencies": {
"ava": "^0.17.0",
"babel-preset-env": "^1.1.8",
"coveralls": "^2.11.15",
"eslint": "^3.15.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"nyc": "^10.1.2"
},
"scripts": {
"test": "nyc ava --verbose",
"autotest": "ava --verbose --watch",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"author": "Evan Cowden <evan38109@gmail.com>",
"license": "MIT",
"ava": {
"files": [
"lib/**/*Spec.js",
"*Spec.js"
],
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
}
}
}