-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.95 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.95 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
64
{
"name": "@woodwing/studio-component-set-tools",
"version": "1.22.7",
"description": "Validation module for Studio Digital Editor component sets.",
"author": "",
"license": "Apache-2.0",
"repository": "github:woodwing/studio-component-set-tools",
"bugs": {
"url": "https://github.com/WoodWing/studio-component-set-tools/issues"
},
"homepage": "https://github.com/WoodWing/studio-component-set-tools#readme",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"lib/"
],
"scripts": {
"build": "run-s clean compile",
"compile": "tsc",
"watch": "tsc --watch",
"test": "tsc -p tsconfig.test.json --noEmit && jest --forceExit --coverage --verbose --detectOpenHandles",
"watchtest": "jest --forceExit --coverage --verbose --detectOpenHandles --watchAll",
"clean": "rimraf ./dist",
"check": "run-p -l lint format:check test",
"lint": "run-p lint:*",
"lint:lib": "eslint ./lib",
"lint:test": "eslint ./test",
"format:write": "prettier --write \"**/*\"",
"format:check": "prettier -l \"**/*\""
},
"devDependencies": {
"@swc/jest": "^0.2.29",
"@types/jest": "^27.0.0",
"@types/json-schema": "~7.0.7",
"@types/node": "^12.20.28",
"@types/parse5": "^6.0.0",
"@types/pngjs": "^6.0.0",
"@types/recursive-readdir": "^2.2.0",
"@types/semver": "^7.3.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.2.2",
"npm-run-all": "~4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"ajv": "^8.4.0",
"ajv-formats": "^2.1.1",
"chalk": "~4.1.2",
"htmlparser2": "^6.1.0",
"json-source-map": "^0.6.1",
"parse5": "^6.0.1",
"pngjs": "^3.3.0",
"semver": "^7.3.0"
}
}