This repository has been archived by the owner on Sep 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@libero/editor",
"version": "0.0.11",
"description": "A web-based XML editor",
"main": "./dist/bin/index.js",
"files": [
"dist/bin/**/*"
],
"scripts": {
"build": "tsc && node make.js",
"debug": "bash debug.sh",
"debug:webpack": "bash debug-webpack.sh",
"clean": "rm -rf ./dist ./node_modules",
"test": "jest --config jestconfig.json --passWithNoTests",
"lint": "eslint \"src/**/*.js\" \"src/**/*.ts\"",
"lint-fix": "eslint --fix \"src/**/*.js\" \"src/**/*.ts\"",
"format": "prettier --check \"src/**/*.js\" \"src/**/*.ts\"",
"format-fix": "prettier --write \"src/**/*.js\" \"src/**/*.ts\"",
"docs": "typedoc --out ./dist/docs/ --exclude **/*.test.ts ./src/",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/libero/editor.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/libero/editor/issues"
},
"homepage": "https://github.com/libero/editor#readme",
"publishConfig": {
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@libero/eslint-config": "0.0.1",
"@types/body-parser": "^1.17.1",
"@types/express": "^4.17.2",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.7",
"@types/supertest": "^2.0.8",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.0.8",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"standard-version": "^7.0.0",
"substance-bundler": "^0.27.2",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"typedoc": "^0.15.2",
"typescript": "^3.7.2"
},
"dependencies": {
"@libero/texture": "^0.0.15",
"express": "^4.17.1"
}
}