-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 KB
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
{
"name": "@living-room/database-js",
"version": "0.7.0",
"description": "A Datalog-style database that enables programmers to represent facts in natural language.",
"main": "src/RoomDB.js",
"type": "module",
"dependencies": {
"@living-room/parser-js": "^0.4.0",
"node-fetch": "^3"
},
"devDependencies": {
"ava": "^4.3.0",
"npm-run-all": "^4",
"standard": "^17.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/living-room/database-js.git"
},
"keywords": [
"datalog",
"natural",
"language",
"dynamicland",
"harc"
],
"author": "Alex Warth <alexwarth@gmail.com> (http://alexwarth.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/living-room/database-js/issues"
},
"homepage": "https://github.com/living-room/database-js#readme",
"scripts": {
"lint": "standard src/*js",
"format": "npm run lint -- --fix",
"develop": "nodemon --watch src --watch tests --exec 'npm run test'",
"test": "ava"
}
}