-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
57
58
59
{
"name": "nedb-node",
"description": "NeDB for Node",
"version": "0.0.0",
"homepage": "https://github.com/bullish-ventures/nedb-node",
"main": "lib/",
"keywords": [
"nedb",
"mongodb",
"node",
"database"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/bullish-ventures/nedb-node.git"
},
"author": {
"name": "Bullish Ventures",
"email": "[email protected]",
"url": "https://bullishventures.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/bullish-ventures/nedb-node/issues"
},
"engines": {
"node": ">= 4.6.0"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"lint": "semistandard src/**/*.js test/**/*.js --fix",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover _mocha -- --opts mocha.opts",
"test": "npm run compile && npm run lint && npm run coverage"
},
"semistandard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"directories": {
"src": "src"
},
"dependencies": {
"nedb-core": "bullish-ventures/nedb-core",
"react-native-fs": "^2.1.0-rc.1"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.2.0",
"semistandard": "^10.0.0"
}
}