-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.12 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
{
"name": "t2-auto-compiler",
"version": "0.0.1",
"description": "A server to pre-compile binaries for Tessel 2",
"scripts": {
"build": "node ./bin/build",
"test": "mocha --require reify --require async-to-gen/register --require buble/register --require test/config",
"lint": "eslint ./"
},
"bin": {
"t2-identify": "./bin/t2-identify.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tessel/t2-auto-compiler.git"
},
"keywords": [
"tessel",
"t2",
"microcontroller",
"embedded",
"cli",
"v2",
"technical",
"machine"
],
"author": "Tessel Project",
"license": "MIT",
"bugs": {
"url": "https://github.com/tessel/t2-auto-compiler/issues"
},
"homepage": "https://github.com/tessel/t2-auto-compiler",
"devDependencies": {
"async-to-gen": "^1.3.2",
"chai": "^3.5.0",
"eslint": "^3.15.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.1",
"execa": "^0.6.0",
"fs-extra": "^2.0.0",
"minimatch": "^3.0.3",
"mocha": "^3.2.0",
"rollup": "^0.41.4",
"rollup-plugin-async": "^1.2.0",
"rollup-plugin-buble": "^0.15.0",
"shep": "^3.2.1"
},
"dependencies": {
"aws-sdk": "^2.7.7",
"bluebird": "^3.4.6",
"bluebird-retry": "^0.10.1",
"concurrent-couch-follower": "^1.2.0",
"debug": "^2.3.3",
"dotenv": "^4.0.0",
"got": "^6.0.1",
"gunzip-maybe": "^1.2.1",
"node-fetch": "^1.6.3",
"tar-esnext": "^2.0.0"
},
"engines": {
"node": "4.2.1"
},
"engine-strict": true,
"shep": {
"accountId": "047869558202",
"region": "us-east-1",
"apiId": "zsdy4qreqg",
"buildCommand": "yarn build"
},
"eslintConfig": {
"env": {
"node": true,
"mocha": true
},
"globals": {
"expect": false,
"assert": false,
"Factory": false
},
"extends": [
"standard",
"plugin:import/errors",
"plugin:import/warnings"
],
"rules": {
"import/no-unresolved": [
2
],
"no-return-await": "error"
}
}
}