forked from datreeio/node-datreeio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.99 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
60
61
62
{
"name": "datreeio",
"version": "0.0.0-placeholder",
"description": "datree.io Node.js module",
"main": "dist/index.js",
"scripts": {
"test": "nyc ./node_modules/mocha/bin/mocha --require babel-core/register test/unit && nyc report --reporter=text-lcov | coveralls",
"test-html": "nyc --reporter=html --reporter=text ./node_modules/mocha/bin/mocha --require babel-core/register test/unit && open coverage/index.html",
"test-integration": "./test/integration/test.sh",
"clean": "rm -rf dist",
"build": "npm run clean && mkdir dist && babel index.js lib/* -s -d dist && cp package.json dist/",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"semantic-release-local": "semantic-release pre --debug=false && npm publish && semantic-release post --debug=false",
"postinstall": "node dist/lib/install.js",
"preuninstall": "node dist/lib/uninstall.js"
},
"author": "Shimon Tolts",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"coveralls": "^2.13.1",
"mocha": "^3.5.3",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.2.1",
"prettier": "1.8.2",
"semantic-release": "^8.0.0",
"sinon": "^2.3.8",
"snazzy": "^7.0.0",
"webpack": "^3.5.6"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"bunyan": "^1.8.12",
"bunyan-prettystream": "^0.1.3",
"chalk": "^2.1.0",
"cli-table": "^0.3.1",
"commander": "^2.12.2",
"figlet": "^1.2.0",
"ini": "^1.3.4",
"os-name": "^2.0.1",
"request": "^2.81.0",
"request-promise-native": "^1.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/datreeio/node-datreeio.git"
},
"release": {
"verifyConditions": {
"path": "./node_modules/semantic-release/src/lib/plugin-noop.js"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120
}
}