This repository has been archived by the owner on Jun 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
62 lines (62 loc) · 1.88 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": "paperspace-node",
"version": "0.2.4",
"description": "Paperspace API for node",
"main": "index.js",
"repository": "https://github.com/Paperspace/paperspace-node",
"author": "Paperspace <support@paperspace.com>",
"license": "ISC",
"bin": {
"paperspace": "./bin/paperspace"
},
"scripts": {
"test": "tape ./test/*.test.js | tap-spec",
"lint": "eslint .",
"docs": "jsdoc ./index.js -R README.md -c jsdoc.json && cp releasenotes.md scripts.md developers.md docs/.",
"release-docs": "yarn docs && yarn gh-pages --dotfiles --message \"[skip ci] Update Docs\" --dist docs",
"prettier": "prettier --single-quote --trailing-comma es5 --use-tabs --write lib/**/*.js",
"postversion": "git push origin refs/tags/v\"$npm_package_version\" && git push && echo \"✨ Successfully released version v$npm_package_version! The tag build process will publish it ✨\""
},
"engines": {
"node": ">=8.9.3",
"yarn": ">=1.3.2"
},
"dependencies": {
"ajv": "^6.4.0",
"archiver": "^2.1.0",
"async": "1.5.2",
"aws-sdk": "^2.169.0",
"chalk": "^1.1.3",
"extend": ">=3.0.2",
"json-stable-stringify": "1.0.1",
"lodash": "^4.17.11",
"lodash.assign": "4.0.6",
"lodash.clone": "4.3.2",
"lodash.defaultsdeep": "4.6.1",
"lodash.find": "4.5.0",
"lodash.isequal": "4.3.0",
"lodash.uniq": "4.4.0",
"lodash.uniqwith": "4.4.0",
"mkdirp": "^0.5.1",
"moment": "^2.13.0",
"pkginfo": "^0.4.1",
"progress": "^2.0.0",
"qs": "^6.1.0",
"readline-sync": "^1.4.7",
"route-parser": "0.0.5",
"superagent": "3.8.1",
"table": "^4.0.3",
"yargs": "^5.0.0"
},
"devDependencies": {
"docdash": "^0.4.0",
"eslint": "4.18.2",
"gh-pages": "^3.1.0",
"jsdoc": "^3.6.6",
"marked": "^0.3.9",
"prettier": "^1.3.1",
"repl": "0.1.3",
"tap-spec": "4.1.1",
"tape": "4.6.0"
}
}