-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 1.13 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
{
"name": "reconf-nodejs",
"version": "2.0.2",
"description": "Reconf client for NodeJS",
"main": "index.js",
"author": "Julio Corradi <jgcorradi@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/blocks4j/reconf-nodejs.git"
},
"keywords": [
"reconf",
"remote config",
"editor",
"blocks4j"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/blocks4j/reconf-nodejs/issues"
},
"homepage": "https://github.com/blocks4j/reconf-nodejs#readme",
"scripts": {
"git:push": "git push origin master --tags",
"release:major": "npm test && npm version major && npm run git:push",
"release:minor": "npm test && npm version minor && npm run git:push",
"release:patch": "npm test && npm version patch && npm run git:push",
"dev:reload": "jasmine-node ./spec/ --color --autotest --watch ./",
"test": "jasmine-node ./spec/ --color"
},
"devDependencies": {
"jasmine-node": "^1.15.0",
"nock": "^9.4.3"
},
"dependencies": {
"dotcfg": "^1.7.6",
"is": "^3.2.1",
"request": "^2.87.0",
"request-promise-native": "^1.0.5"
}
}