forked from balena-io/balena-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.53 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "balena-sdk",
"version": "11.1.1",
"description": "The Balena JavaScript SDK",
"main": "build/balena.js",
"types": "typings/balena-sdk.d.ts",
"homepage": "https://github.com/balena-io/balena-sdk",
"repository": {
"type": "git",
"url": "git://github.com/balena-io/balena-sdk.git"
},
"files": [
"build/",
"typings/",
"DOCUMENTATION.md"
],
"keywords": [
"sdk",
"resin",
"resin.io",
"balena",
"balena.io",
"iot",
"devices"
],
"directories": {
"test": "tests"
},
"scripts": {
"clean": "rimraf build",
"test": "npm run build && npm run test:all",
"test:all": "npm run test:node && npm run test:browser",
"test:node": "gulp test",
"test:browser": "karma start",
"build": "npm run lint && npm run clean && tsc && gulp build && npm run docs",
"docs": "jsdoc2md \"build/**/!(balena-browser*.js)\" > DOCUMENTATION.md",
"ci": "npm test && catch-uncommitted",
"coffeelint": "coffeelint -f coffeelint.json -r \"lib\" \"tests\" \"gulpfile.coffee\"",
"tslint": "tslint -t stylish -c tslint.json \"typings/**/*.d.ts\" \"lib/**/*.ts\" \"tests/**/*.ts\"",
"lint": "npm run prettify && npm run coffeelint && npm run tslint",
"precommit": "lint-staged",
"prepublish": "require-npm4-to-publish",
"prepack": "npm run build",
"prettify": "prettier --write \"lib/**/*.ts\" \"typings/**/*.d.ts\"",
"watch": "npm run build && watch \"npm run lint\" \"lib\" \"tests\""
},
"author": "Juan Cruz Viotti <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=6.0"
},
"devDependencies": {
"@resin.io/types-mochainon": "^2.0.1",
"@types/lodash": "^4.14.85",
"@types/mocha": "^5.2.5",
"balena-config-karma": "^2.3.1",
"browserify": "^14.3.0",
"catch-uncommitted": "^1.0.0",
"chai-samsam": "0.0.2",
"coffeescript": "1.12.5",
"dotenv": "^4.0.0",
"gulp": "^3.9.1",
"gulp-coffee": "^2.3.1",
"gulp-coffeelint": "^0.6.0",
"gulp-insert": "^0.5.0",
"gulp-mocha": "^4.1.0",
"gulp-tap": "^1.0.1",
"gulp-typescript": "^3.2.3",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.4",
"husky": "^0.14.3",
"js-polyfills": "^0.1.33",
"jsdoc-to-markdown": "^3.0.0",
"karma": "^3.0.0",
"karma-env-preprocessor": "^0.1.1",
"lint-staged": "^5.0.0",
"mocha": "^3.0.0",
"mochainon": "^2.0.0",
"prettier": "^1.8.2",
"readable-stream": "^2.3.6",
"require-npm4-to-publish": "^1.0.0",
"rimraf": "^2.6.1",
"rindle": "^1.2.0",
"run-sequence": "^1.1.0",
"superagent": "^3.0.0",
"tmp": "^0.0.31",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.10.0",
"tslint-no-unused-expression-chai": "^0.1.3",
"typescript": "2.6.2",
"uglify-es": "^3.3.9",
"vinyl-source-buffer": "^1.1.1",
"watch": "^1.0.2"
},
"dependencies": {
"@types/bluebird": "3.5.21",
"@types/common-tags": "^1.4.0",
"@types/node": "^8.0.53",
"abortcontroller-polyfill": "^1.1.9",
"balena-auth": "^3.0.0",
"balena-errors": "^4.0.0",
"balena-pine": "^9.0.0",
"balena-request": "^10.0.0",
"balena-settings-client": "^4.0.0",
"bluebird": "^3.3.1",
"common-tags": "^1.8.0",
"lodash": "^4.4.0",
"memoizee": "^0.4.9",
"moment": "^2.18.1",
"ndjson": "^1.5.0",
"promise-memoize": "^1.2.0",
"resin-device-status": "^1.0.1",
"resin-register-device": "^5.0.0",
"semver": "^5.3.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint -t stylish"
]
}
}