forked from deathbeds/wxyz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.17 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
{
"private": true,
"name": "WXYZ",
"version": "0.2.0",
"description": "experimental widgets",
"main": "index.js",
"repository": "https://github.com/deathbeds/wxyz",
"author": "[email protected]",
"license": "BSD-3-Clause",
"scripts": {
"bootstrap": "jlpm && jlpm lerna bootstrap && jlpm build:meta",
"build": "lerna exec jlpm build",
"build:meta": "jlpm build --scope @deathbeds/wxyz-meta",
"lint": "jlpm lint:prettier && jlpm lint:ts",
"lint:prettier": "prettier --write ./*.{json,md,yml,yaml} ./src/**/*.{ts,json,md,yml,yaml,css}",
"lint:ts": "tslint --fix src/**/*.ts",
"watch": "lerna exec jlpm watch",
"watch:meta": "jlpm watch --scope @deathbeds/wxyz-meta"
},
"devDependencies": {
"lerna": "^3.13.2",
"prettier": "^1.17.0",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"jquery": "^3.4.1",
"fstream": "^1.0.12"
},
"resolutions": {
"jquery": "^3.4.1",
"fstream": "^1.0.12",
"lodash": "^4.17.13",
"lodash.template": "^4.5.0",
"lodash.mergewith": "^4.6.2",
"js-yaml": "^3.13.1"
},
"workspaces": [
"src/ts/wxyz-*"
]
}