forked from balena-io/balena-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.15 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
{
"name": "resin-sdk",
"version": "8.1.3",
"description": "The Resin.io JavaScript SDK",
"main": "build/resin.js",
"types": "typings/resin-sdk.d.ts",
"homepage": "https://github.com/resin-io/resin-sdk",
"repository": {
"type": "git",
"url": "git://github.com/resin-io/resin-sdk.git"
},
"files": [
"build/",
"typings/",
"DOCUMENTATION.md"
],
"keywords": [
"sdk",
"resin",
"resin.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/**/!(resin-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\"",
"lint": "npm run prettify && npm run coffeelint && npm run tslint",
"precommit": "lint-staged",
"prepublish": "require-npm4-to-publish",
"prepack": "npm test",
"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": {
"@types/lodash": "^4.14.85",
"browserify": "^14.3.0",
"catch-uncommitted": "^1.0.0",
"coffee-script": "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": "^2.0.0",
"gulp-util": "^3.0.4",
"husky": "^0.14.3",
"js-polyfills": "^0.1.33",
"jsdoc-to-markdown": "^3.0.0",
"karma": "^1.3.0",
"karma-env-preprocessor": "^0.1.1",
"lint-staged": "^5.0.0",
"mocha": "^3.0.0",
"mochainon": "^1.0.0",
"prettier": "^1.8.2",
"request": "^2.67.0",
"require-npm4-to-publish": "^1.0.0",
"resin-config-karma": "^1.0.4",
"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",
"typescript": "2.6.2",
"vinyl-source-buffer": "^1.1.1",
"watch": "^1.0.2"
},
"dependencies": {
"@types/bluebird": "^3.5.18",
"@types/node": "^8.0.53",
"bluebird": "^3.3.1",
"lodash": "^4.4.0",
"memoizee": "^0.4.9",
"moment": "^2.18.1",
"promise-memoize": "^1.2.0",
"resin-auth": "^2.0.0",
"resin-device-logs": "^3.1.0",
"resin-device-status": "^1.0.1",
"resin-errors": "^2.10.0",
"resin-pine": "^6.0.0",
"resin-register-device": "^5.0.0",
"resin-request": "^9.0.0",
"resin-settings-client": "^3.5.2",
"semver": "^5.3.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint -t stylish"
]
}
}