This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.54 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
{
"name": "nextion",
"version": "0.0.0-development",
"description": "Communicate with ITEAD's Nextion HMI Devices",
"main": "index.js",
"keywords": [
"nextion",
"touch",
"touchscreen",
"hmi",
"itead",
"lcd",
"tft",
"serial",
"uart",
"arduino",
"tessel",
"serialport"
],
"repository": {
"type": "git",
"url": "https://github.com/boneskull/nextion.git"
},
"author": "Christopher Hiller <[email protected]> (https://boneskull.com/)",
"license": "MIT",
"dependencies": {
"bin-protocol": "^3.1.1",
"debug": "^2.6.3",
"lodash": "^4.17.11",
"p-map-series": "^1.0.0",
"pify": "^2.3.0",
"serialport": "^7.0.2",
"source-map-support": "^0.4.13"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "concurrently \"babel --source-maps --out-dir dist src\" \"cross-env BABEL_ENV=production webpack\"",
"build:watch": "concurrently \"babel --watch --source-maps --out-dir dist src\" \"cross-env BABEL_ENV=production webpack --watch\"",
"prepublishOnly": "npm run build",
"pretest": "eslint '*.js' test src",
"test": "cross-env BABEL_ENV=test nyc mocha --require test/harness.js 'test/unit/**/*.spec.js'",
"test:e2e": "mocha --require babel-register --require test/harness.js 'test/e2e/**/*.spec.js'",
"preversion": "npm test",
"docs": "esdoc",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.0.0",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-env": "^1.2.2",
"babel-register": "^6.24.0",
"babili-webpack-plugin": "^0.0.11",
"concurrently": "^3.6.1",
"cross-env": "^3.2.4",
"esdoc": "^1.1.0",
"esdoc-node": "^1.0.1",
"eslint": "^3.17.1",
"eslint-config-semistandard": "^8.0.0",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-lodash-fp": "^2.1.3",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^2.1.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rimraf": "^2.6.1",
"sinon": "^1.17.7",
"unexpected": "^10.39.2",
"unexpected-eventemitter": "^0.1.0",
"unexpected-sinon": "^10.7.1",
"webpack": "^2.2.1",
"webpack-node-externals": "^1.5.4",
"travis-deploy-once": "^5.0.9",
"semantic-release": "^15.12.1"
},
"engines": {
"node": ">=6"
},
"files": [
"dist",
"examples",
"src",
"minimal"
]
}