-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"name": "fool-db",
"version": "1.0.0",
"main": "fooldb.js",
"scripts": {
"up": "bash gitup.sh",
"build:docs": "node build/build-docs.js",
"build:browser": "node build/build-browser.js",
"dev": "nodemon -w 'fooldb.js' -w 'fooldb.browser-polyfill.js' -w 'lib' -w 'test/test.js' -w 'lib' -w 'test/features' -w 'test/browser/test.js' -e 'js' -x 'nyc npm test'",
"dev:nocoverage": "nodemon -w 'fooldb.js' -w 'fooldb.browser-polyfill.js' -w 'lib' -w 'test/test.js' -w 'lib' -w 'test/features' -w 'test/browser/test.js' -e 'js' -x 'npm test'",
"test": "npm run build:browser && node test/test.js",
"serve:browser": "cd test/browser && sh serve.sh"
},
"keywords": [],
"author": "allnulled",
"license": "WTFPL",
"description": "",
"devDependencies": {
"@allnulled/javadoc-brute": "^1.0.4"
},
"nyc": {
"all": false,
"include": [
"fooldb.js"
],
"exclude": [],
"reporter": [
"html"
],
"report-dir": "test/coverage",
"extension": [
".js"
]
}
}