-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "@codear/lilac",
"description": "Components library",
"version": "2.1.0",
"files": [
"dist"
],
"main": "dist/lilac.js",
"repository": "WebConfTech/lilac",
"author": "WebConf <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"husky": "^4.2.3",
"lit-element": "^2.2.1",
"projext": "^8.0.0",
"projext-plugin-rollup": "^6.0.0",
"rimraf": "^3.0.2",
"rollup-plugin-svg": "^2.0.0",
"typeface-roboto": "^0.0.75",
"typeface-source-sans-pro": "^0.0.75",
"typescript": "^3.8.2",
"typescript-lit-html-plugin": "^0.9.0",
"typescript-styled-plugin": "^0.15.0"
},
"engine-strict": true,
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "./utils/scripts/lint",
"lint:all": "./utils/scripts/lint-all",
"start": "projext run",
"build": "rimraf ./dist && projext build --type production"
},
"husky": {
"hooks": {
"pre-commit": "./utils/hooks/pre-commit",
"post-merge": "./utils/hooks/post-merge"
}
}
}