-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "@snakemode/matrix-driver",
"version": "1.0.28",
"description": "A general purpose LED matrix driver / simulator sandbox",
"main": "dist/app/index.js",
"types": "dist/app/index.d.ts",
"scripts": {
"prestart": "cd api && npm install",
"start": "run-p dev:api dev:server",
"test": "jest",
"ci": "tsc",
"test:acceptance": "jest acceptance --runInBand",
"dev:api": "npm run start --prefix api",
"dev:server": "npx snowpack dev",
"build:azure": "npx snowpack build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snakemode/matrix-driver.git"
},
"keywords": [
"led",
"matrix",
"neopixel"
],
"author": "Jo Franchetti, David Whitney",
"license": "ISC",
"bugs": {
"url": "https://github.com/snakemode/matrix-driver/issues"
},
"homepage": "https://github.com/snakemode/matrix-driver#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@types/jest": "^26.0.15",
"jest": "^26.6.3",
"mqtt": "^4.2.6",
"npm-run-all": "^4.1.5",
"snowpack": "^2.17.1",
"text-encoding": "^0.7.0",
"ts-jest": "^26.4.4",
"typescript": "^4.0.3"
},
"dependencies": {
"ably": "^1.2.4",
"jimp": "^0.16.1"
},
"publishConfig": {
"access": "public"
}
}