-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.98 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "feathers-nedb",
"description": "Feathers NeDB Service",
"version": "2.0.1",
"homepage": "https://github.com/feathersjs/feathers-nedb",
"repository": {
"type": "git",
"url": "https://github.com/feathersjs/feathers-nedb.git"
},
"bugs": {
"url": "https://github.com/feathersjs/feathers-nedb/issues"
},
"license": "MIT",
"keywords": [
"feathers",
"feathers-plugin",
"REST",
"Socket.io",
"realtime",
"nedb",
"service"
],
"author": "Feathers <hello@feathersjs.com> (http://feathersjs.com)",
"contributors": [
"Marshall Thompson <marshall@creativeideal.net> (https://github.com/marshallswain)",
"Eric Kryski <e.kryski@gmail.com> (http://erickryski.com)",
"David Luecke <daff@neyeon.de> (http://neyeon.com)"
],
"main": "lib/",
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"compile": "rm -rf lib/ && babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"jshint": "jshint src/. test/. --config",
"mocha": "mocha test/ --compilers js:babel-core/register",
"test": "rm -rf db-data && npm run compile && npm run jshint && npm run mocha && nsp check"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=1.4.0"
},
"dependencies": {
"babel-polyfill": "^6.3.14",
"feathers-errors": "^1.1.5",
"feathers-query-filters": "^1.4.0",
"uberproto": "^1.2.0"
},
"devDependencies": {
"async": "^1.3.0",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.3.13",
"body-parser": "^1.13.2",
"chai": "^3.0.0",
"feathers": "^1.1.0",
"feathers-service-tests": "^0.5.3",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"nedb": "^1.5.1",
"nsp": "^2.2.0"
}
}