-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.82 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.82 KB
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
{
"name": "@ubio/protocol",
"version": "7.11.2",
"description": "ubio Automation Protocol",
"main": "out/main/index.js",
"types": "out/main/index.d.ts",
"author": "ubio",
"license": "MIT",
"files": [
"src/",
"out/"
],
"scripts": {
"clean": "rm -rf out/ public/",
"check": "eslint --ext=.js,.ts .",
"dev": "npm run clean && run-p dev:*",
"dev:ts": "tsc -w",
"dev:site": "webpack-dev-server --hot",
"test": "NODE_ENV=test mocha --recursive -R spec ./out/test/*/*.test.js",
"build": "run-s clean build:ts build:site build:public",
"build:ts": "tsc",
"build:site": "NODE_ENV=production webpack",
"build:public": "node ./out/bin/build",
"preversion": "npm run check && npm run build && npm test && git add docs/app.js",
"postversion": "npm publish --access public && git push origin master --tags"
},
"pre-commit": [
"check"
],
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/glob": "^7.1.1",
"@types/jsonpointer": "^4.0.0",
"@types/mocha": "^5.2.7",
"@types/node": "^18.19.21",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"@ubio/eslint-config": "^1.4.4",
"chai": "^4.2.0",
"css-loader": "^7.1.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vue": "^9.18.1",
"glob": "^7.1.6",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.0.10",
"typescript": "^4.9.5",
"vue": "^2.7.14",
"vue-loader": "^15.10.1",
"vue-router": "^3.6.5",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.7.14",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.3",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"ajv": "^6.12.6",
"isomorphic-fetch": "^3.0.0",
"jsonpointer": "^5.0.1"
}
}