-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 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
{
"name": "@blocklang/bootstrap-classes",
"version": "0.0.3-alpha.10",
"repository": {
"type": "git",
"url": "https://github.com/blocklang/bootstrap-classes.git"
},
"scripts": {
"build:lib": "dojo build widget --mode dist --target lib && shx cp -r output/dist/* dist/",
"build:lib:legacy": "dojo build widget --mode dist --target lib -l && shx cp -r output/dist/* dist/",
"clean": "shx rm -rf dist && shx mkdir dist",
"build": "npm run clean && npm run build:lib && npm run build:lib:legacy && shx cp package.json dist/ && shx cp README.md dist/",
"prettier": "prettier --write \"{src,tests}/**/*.{ts,tsx,css}\""
},
"dependencies": {
"tslib": "~2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@dojo/cli": "^7.0.0",
"@dojo/cli-build-widget": "^7.0.0",
"@types/node": "^14.0.13",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"shx": "^0.3.2",
"typescript": "~3.9.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": false,
"tabWidth": 4,
"useTabs": true,
"printWidth": 120,
"arrowParens": "always"
}
}