forked from ITPNYU/p5.ble.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.86 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
{
"name": "p5ble",
"version": "0.0.3",
"description": "A javascript library that enables communication between BLE devices and a p5 sketch.",
"main": "dist/p5.ble.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf dist",
"start": "webpack-dev-server --mode development --config webpack.dev.babel.js",
"build": "npm-run-all --parallel build:*",
"build:umd": "webpack --output-filename p5.ble.js --mode development",
"build:umd.min": "webpack --output-filename p5.ble.min.js --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yining1023/p5.ble.js.git"
},
"keywords": [
"p5js",
"ble"
],
"files": [
"dist",
"README.md"
],
"author": "Yining Shi <[email protected]> (https://1023.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/yining1023/p5.ble.js/issues"
},
"homepage": "https://github.com/yining1023/p5.ble.js#readme",
"devDependencies": {
"@babel/polyfill": "7.2.5",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "1.6.1",
"eslint": "5.11.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-loader": "2.0.0",
"eslint-plugin-import": "2.14.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"html-webpack-plugin": "3.2.0",
"json-loader": "0.5.7",
"npm-run-all": "4.1.5",
"rimraf": "2.6.2",
"webpack": "4.28.2",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.14",
"webpack-merge": "4.1.5"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}