-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "@sensebox/sketch-templater",
"version": "1.13.1",
"description": "nodejs library to create senseBox Arduino Sketches",
"main": "src/index.js",
"repository": "https://github.com/sensebox/node-sketch-templater.git",
"author": "Gerald Pape <[email protected]>",
"engines": {
"node": ">=14",
"npm": ">=8"
},
"contributors": [
"Jan Wirwahn",
"Matthias Pfeil"
],
"license": "MIT",
"scripts": {
"lint": "node_modules/.bin/eslint --fix \"{src,test,.scripts}/**/*.js\"",
"test": "node_modules/.bin/mocha",
"arduino-test": "docker build -t arduino-test . && docker run arduino-test",
"version": "node .scripts/npm_version-update_changelog.js && git add CHANGELOG.md"
},
"devDependencies": {
"chai": "^4.1.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.2.1",
"prettier": "^2.5.1"
},
"dependencies": {
"config": "^3.3.7",
"dedent": "^0.7.0",
"eol": "^0.9.1"
},
"publishConfig": {
"access": "public"
}
}