-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.49 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
{
"name": "@alligo/consul-tls",
"version": "0.2.0",
"description": "",
"bin": "index.js",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"stop-consul": "./test/server/stop.sh",
"prestart-consul": "npm run stop-consul",
"start-consul": "./test/server/init.sh",
"eslint": "eslint index.js",
"david": "david",
"mocha": "mocha --reporter spec",
"cover": "istanbul cover _mocha -- -R spec test/* && istanbul check-coverage --statement 100 --branch 100 --line 100 --function 100",
"pretest": "npm run eslint && npm run david && npm run start-consul",
"test": "npm run mocha && npm run cover",
"posttest": "npm run stop-consul",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"preversion": "git pull && rm -rf ./node_modules/ && npm install && npm test",
"postversion": "git push && npm publish --access=public && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alligo/consul-tls.git"
},
"pre-commit": [
"precommit-msg",
"test"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/alligo/consul-tls/issues"
},
"homepage": "https://github.com/alligo/consul-tls#readme",
"dependencies": {
"got": "^6.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.11",
"david": "^8.0.0",
"eslint": "^3.1.1",
"istanbul": "^0.4.4",
"mocha": "^3.0.0",
"pre-commit": "^1.1.3"
}
}