forked from particle-iot/spark-protocol
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 2.73 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
{
"name": "spark-protocol",
"version": "0.1.6",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/spark/spark-protocol"
},
"homepage": "https://github.com/spark/spark-protocol",
"bugs": "https://github.com/spark/spark-protocol/issues",
"author": {
"name": "David Middlecamp",
"email": "[email protected]",
"url": "https://www.spark.io/"
},
"license": "LGPL-3.0",
"scripts": {
"build": "babel ./src --out-dir ./dist",
"lint": "eslint --fix --max-warnings 0 -- .",
"lint-staged": "lint-staged",
"postinstall": "npm run update-firmware",
"prettify": "prettier --single-quote --trailing-comma all --write src/*/**.js test/*/**.js",
"start": "babel ./src --out-dir ./dist --watch",
"test": "ava --no-cache",
"test:watch": "ava --watch",
"update-firmware": "node ./dist/scripts/update-firmware-binaries"
},
"lint-staged": {
"src/**/*.js": [
"lint",
"prettify",
"git add"
],
"test/**/*.js": [
"lint",
"prettify",
"git add"
]
},
"pre-commit": [
"lint-staged",
"test"
],
"ava": {
"verbose": true,
"babel": "inherit",
"files": [
"test/*.test.js"
],
"require": [
"babel-register"
]
},
"dependencies": {
"babel-plugin-transform-decorators": "^6.24.1",
"binary-version-reader": "^0.5.0",
"buffer-crc32": "~0.2.3",
"bunyan": "^1.8.10",
"chalk": "^1.1.3",
"coap-packet": "^0.1.14",
"compact-array": "0.0.1",
"constitute": "^1.6.2",
"ec-key": "0.0.2",
"github": "^8.1.0",
"hogan.js": "*",
"memoizee": "^0.4.1",
"mkdirp": "^0.5.1",
"moment": "*",
"moniker": "^0.1.2",
"node-rsa": "^0.4.2",
"nullthrows": "^1.0.0",
"request": "^2.79.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-destructuring": "^6.19.0",
"babel-plugin-transform-es2015-spread": "^6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "^6.18.0",
"eslint": "^3.11.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-config-prettier": "^2.2.0",
"eslint-plugin-flowtype": "^2.28.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-sorting": "^0.3.0",
"flow-bin": "^0.53.1",
"lint-staged": "^4.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.5.3",
"sinon": "^1.17.7"
}
}