This repository was archived by the owner on Aug 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 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
{
"name": "feathers-configuration",
"description": "A small configuration module for your Feathers application.",
"version": "0.1.0",
"homepage": "https://github.com/feathersjs/feathers-configuration",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-configuration.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers-configuration/issues"
},
"engines": {
"node": ">= 0.12.0"
},
"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": "NODE_ENV=testing mocha test/ --compilers js:babel-core/register",
"test": "npm run jshint && npm run mocha && nsp check"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"debug": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.1.4",
"babel-core": "^6.1.4",
"babel-plugin-transform-object-assign": "^6.1.18",
"babel-preset-es2015": "^6.1.4",
"feathers": "^1.2.0",
"jshint": "^2.8.0",
"mocha": "^2.3.3",
"nsp": "^2.2.0"
}
}