-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.94 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
{
"name": "opsi-api",
"version": "1.0.5",
"description": "OPSI Api Wrapper",
"main": "dist/src/api.js",
"types": "dist/src/api.d.ts",
"directories": {
"test": "tests"
},
"files": [
"dist/**/*"
],
"scripts": {
"test": "ts-mocha test/**/*.ts",
"test:one": "ts-mocha",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"build": "tsc",
"docs:build": "typedoc --tsconfig ./tsconfig.json --out ./docs --entryPointStrategy expand ./src && mkdir docs/.vuepress && cp vuepress_config.js docs/.vuepress/config.js && vuepress build docs",
"docs:dev": "vuepress dev docs",
"docker:dev-server": "npm run install:docker && npm run docker:init $$ echo 'URL: https://localhost:4447/'",
"install:docker": "docker run -itd --name docker-opsi -h opsi.docker.lan -p 4447:4447 -e OPSI_USER=opsi -e OPSI_PASSWORD=opsi nmonst4/opsi",
"docker:init": "docker exec docker-opsi /usr/local/bin/entrypoint.sh",
"docker:install:opsi-packages": "docker exec docker-opsi opsi-product-updater -i -vv",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"postversion": "git push && git push --tags",
"version": "npm run format && git add -A src"
},
"keywords": [
"nodejs",
"OPSI",
"api",
"wrapper"
],
"author": "NMathar <mail@mathar.work>",
"license": "MIT",
"repository": "git@github.com:NMathar/opsi-api-wrapper.git",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^8.0.0",
"@types/node": "^16.11.1",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"prettier": "^2.4.1",
"ts-mocha": "^8.0.0",
"ts-node": "^10.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.22.6",
"typedoc-plugin-markdown": "^3.11.3",
"typescript": "^4.4.4",
"vuepress": "^1.8.2"
},
"dependencies": {
"axios": "^0.23.0"
}
}