-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.58 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
{
"name": "ns1",
"version": "0.1.14",
"description": "NS1.com JS API",
"main": "lib/index.js",
"scripts": {
"test": "NS1_JS_TEST_API_KEY=x NS1_JS_TEST_API_URL='https://portal.vagrant.nsone.net/v1' NODE_TLS_REJECT_UNAUTHORIZED=0 ./node_modules/babel-cli/bin/babel-node.js ./node_modules/.bin/babel-istanbul cover ./node_modules/mocha/bin/_mocha -- --full-trace test/**/*_test.js",
"test-and-record": "NS1_NOCK_RECORD=true npm run test",
"create-browser-script": "browserify src/index.js -s NS1API -o dist/ns1api_client.js -t [ babelify --presets [ es2015 ] ]",
"build": "babel src --presets es2015 --out-dir lib",
"doc": "rm -rf docs/ && jsdoc src/**.js README.md -d docs",
"gh-pages": "npm run doc && git branch -D gh-pages; git checkout --orphan gh-pages && find . -maxdepth 1 ! -name 'docs' ! -name '.*' | xargs rm -rf && mv docs/* . && git add --all . && git commit -am 'documentation' && git push origin gh-pages --force && git checkout develop"
},
"repository": {
"type": "git",
"url": "[email protected]:ns1/ns1-js.git"
},
"author": "",
"license": "MIT",
"homepage": "https://github.com/ns1/ns1-js",
"dependencies": {
"babel": "6.3.13",
"babel-cli": "^6.26.0",
"babel-istanbul": "^0.12.2",
"babel-preset-es2015": "6.3.13",
"babelify": "7.2.0",
"browserify": "12.0.1",
"nock": "13.0.3",
"pluralize": "1.2.1",
"superagent": "5.3.1"
},
"devDependencies": {
"babel-plugin-transform-es2015-destructuring": "6.3.15",
"chai": "3.4.1",
"change-case": "2.3.0",
"jsdoc": "^3.6.5",
"mocha": "8.1.1"
}
}