forked from nbroeking/bits
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.49 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@lgslabs/bits",
"version": "5.0.1",
"description": "Bits Integrated Technology System",
"author": "LGS Innovations",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/LGSInnovations/bits/issues"
},
"homepage": "https://github.com/LGSInnovations/bits#readme",
"main": "index.js",
"jest": {
"verbose": true,
"testRegex": "(/test(/.*)*/test-.*)\\.js?$",
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/lib/**/*.js"
],
"setupFiles": [
"<rootDir>/test/setup/main.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/support",
"<rootDir>/test/mocks"
]
},
"scripts": {
"build": "npm install && npm run lint && npm run test",
"bits:install": "npm install --prod",
"lint": "bits-eslint --ext js --fix ./",
"test": "jest",
"dev": "HTTP_PORT=9000 HTTPS_PORT=9001 node app.js -v"
},
"devDependencies": {
"@lgslabs/bits-eslint": "^1.1.0",
"jest": "^26.0.1"
},
"dependencies": {
"@lgslabs/bits-core": "^2.1.0",
"@lgslabs/bits-crypto": "^2.0.3",
"@lgslabs/bits-fs": "^1.2.2",
"@lgslabs/bits-level-kv": "^2.1.1",
"@lgslabs/bits-logger": "^2.0.0",
"@lgslabs/bits-memory-crud": "^3.1.1",
"@lgslabs/bits-memory-kv": "^2.1.1",
"@lgslabs/bits-message-center": "^3.0.0",
"@lgslabs/bits-pouch-crud": "^2.2.3",
"@lgslabs/bits-scopes-util": "^1.0.0",
"@lgslabs/child-process-promise": "^1.0.0",
"graph-js": "^0.1.11",
"semver": "^7.3.2"
}
}