-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "stm32-uploader",
"version": "0.1.0",
"description": "A code uploader for stm32 arm chips",
"main": "index.js",
"scripts": {
"start": "node pkg/main.js",
"test": "mocha",
"build": "babel src --out-dir pkg",
"watch": "npm run build -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjkr/stm32-uploader.git"
},
"keywords": [
"ARM",
"STM32",
"Cortex-M",
"Cortex-M3",
"Cortex-M4"
],
"author": "Joe Kramer",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/jjkr/stm32-uploader/issues"
},
"homepage": "https://github.com/jjkr/stm32-uploader#readme",
"dependencies": {
"lodash": "^4.6.1",
"usb": "^1.1.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-syntax-flow": "^6.5.0",
"babel-plugin-transform-async-to-generator": "^6.7.0",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-node": "^5.0.3"
}
}