forked from google/model-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.68 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
{
"name": "model-viewer-packages",
"private": true,
"description": "The repository for all <model-viewer> packages",
"scripts": {
"test": "./node_modules/.bin/lerna run test --stream",
"test:ci": "./node_modules/.bin/lerna run test:ci --stream",
"bootstrap": "./node_modules/.bin/lerna bootstrap --ci",
"format": "find packages/**/src -name '*.ts' | grep -v .d.ts | xargs ./node_modules/.bin/clang-format --verbose -i",
"lint": "./node_modules/.bin/eslint \"packages/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"clean": "./node_modules/.bin/lerna run clean --stream",
"build": "./node_modules/.bin/lerna run build --stream",
"serve": "./node_modules/.bin/http-server -c-1",
"update:package-lock": "rm -rf node_modules package-lock.json && npm install && lerna exec 'rm -rf node_modules package-lock.json' && lerna bootstrap && npm run clean"
},
"husky": {
"hooks": {
"pre-commit": "./scripts/pre-commit.sh"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/google/model-viewer.git"
},
"author": "DevXR Contributors",
"license": "Apache-2.0",
"engines": {
"node": ">=12.0.0"
},
"bugs": {
"url": "https://github.com/google/model-viewer/issues"
},
"homepage": "https://github.com/google/model-viewer#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"clang-format": "^1.8.0",
"eslint": "^8.20.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-wc": "^1.3.0",
"http-server": "^14.1.1",
"husky": "^7.0.1",
"lerna": "^4.0.0",
"typescript": "4.3.5"
}
}