-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
28 lines (28 loc) · 1.57 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
{
"name": "uni-virtualizer-monorepo",
"private": true,
"homepage": "https://github.com/PolymerLabs/uni-virtualizer",
"repository": "https://github.com/PolymerLabs/uni-virtualizer",
"bugs": "https://github.com/PolymerLabs/uni-virtualizer/issues",
"license": "BSD-3-Clause",
"author": "The Polymer Project Authors",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.25.0",
"eslint": "^8.15.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"http-server": "latest",
"lerna": "^4.0.0"
},
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"clean": "lerna run clean; rm -r node_modules/",
"start": "http-server & npm run build-and-watch --prefix packages/lit-virtualizer-examples",
"deploy-examples": "./scripts/deploy-examples.sh",
"init": "npm run bootstrap; npm run build --prefix packages/lit-virtualizer; npm run bootstrap;",
"test": "lerna run test --scope @lit-labs/virtualizer",
"link:dev": "rm -fr node_modules/lit-{html,element} && ln -s ~/source/lit-html/packages/lit-html/development node_modules/lit-html && ln -sf ~/source/lit-html/packages/lit-html/package.json ~/source/lit-html/packages/lit-html/development/package.json && ln -s ~/source/lit-html/packages/lit-element/development node_modules/lit-element && ln -sf ~/source/lit-html/packages/lit-element/package.json ~/source/lit-html/packages/lit-element/development/package.json",
"link:prod": "rm -f node_modules/lit-{html,element} && npm run bootstrap",
"lint": "eslint \"packages/lit-virtualizer/**/*.{js,ts}\""
}
}