-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
69 lines (69 loc) · 2.27 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
{
"name": "root",
"private": false,
"homepage": "https://uprtcl.io",
"repository": {
"type": "git",
"url": "https://github.com/uprtcl/js-uprtcl/"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna clean --yes",
"dev": "lerna run dev --parallel",
"fix:prettier": "prettier --write . \"**/*.{js,ts,json,md}\"",
"fix:eslint": "npm run lint:eslint -- --fix",
"ibuild": "npm i && npm run clean && npm run bootstrap && npm run build",
"hard-reset": "find . -type d -name node_modules -prune -exec rm -rf {} \\; && find . -type d -name dist -prune -exec rm -rf {} \\; && find . -name \"package-lock.json\" -delete && npm i && npm run clean && npm run bootstrap && npm run build",
"lint:prettier": "prettier --list-different . \"**/*.{js,ts,json,md}\" ",
"lint:eslint": "eslint --quiet --fix --cache --ext .js --ext .ts .",
"lint": "npm run lint:eslint ",
"test": "lerna run test",
"test:watch": "lerna run test:watch --parallel",
"docs:dev": "vuepress dev --host localhost docs",
"docs:build": "vuepress build docs",
"docs:deploy": "ts-node tools/gh-pages-publish",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare"
},
"devDependencies": {
"@types/node": "^10.11.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"colors": "^1.4.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-lit": "^1.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"lerna": "^3.21.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"shelljs": "^0.8.3",
"ts-node": "=7.0.1",
"typescript": "^4.2.3",
"vuepress": "^1.2.0"
},
"contributors": [
{
"name": "Pepo Ospina",
"email": "[email protected]",
"url": "https://github.com/pepoospina"
},
{
"name": "Guillem Cordoba",
"email": "[email protected]",
"url": "https://github.com/guillemcordoba"
}
],
"license": "PER-PACKAGE",
"prettier": {
"semi": true,
"singleQuote": true
},
"sideEffects": false,
"engines": {
"node": ">=12 <13"
}
}