-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.28 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
{
"name": "@d4lton/pixoo-client",
"version": "1.0.11",
"description": "Node module to control Divoom's Pixoo64 LED display",
"main": "dist/src/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"test": "jest --rootDir tests",
"test:integrations": "jest --rootDir integrations",
"docs": "typedoc --plugin typedoc-plugin-markdown",
"prepack": "rm -f *.tgz && rm -rf dist && tsc",
"patch": "npm --no-git-tag-version version patch",
"postversion": "git add package.json && git commit -m \"updated package version to $npm_package_version\" && git push && git tag -a $npm_package_version -m $npm_package_version && git push --tags",
"postpublish": "rm -f $npm_package_name-*.tgz",
"release": "npm run test && npm run patch"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "28.1.8",
"jest": "28.1.3",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typedoc-plugin-markdown": "3.13.4",
"typescript": "4.8.2"
},
"dependencies": {
"@types/node-fetch": "^2.6.2",
"node-fetch": "^2.6.7",
"typedoc": "^0.23.11"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": "https://github.com/d4lton/pixoo-client.git",
"types": "dist/src/index.d.ts"
}