-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 923 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 923 Bytes
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
{
"name": "logic-oracle",
"version": "2.1.0",
"description": "Answers questions for Knights & Knaves logic games",
"main": "index.js",
"type": "module",
"jest": {
"moduleFileExtensions": [
"js",
"test.js"
]
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintConfig": {
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
},
"scripts": {
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/learninglab-dev/logic-oracle.git"
},
"author": "ldavidson",
"license": "ISC",
"bugs": {
"url": "https://github.com/learninglab-dev/logic-oracle/issues"
},
"homepage": "https://github.com/learninglab-dev/logic-oracle#readme",
"devDependencies": {
"@babel/preset-env": "^7.10.4",
"jest": "^26.1.0"
}
}