-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
93 lines (93 loc) · 3.11 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@zappar/zappar-threejs",
"version": "1.0.0",
"description": "ThreeJS wrappers for Zappar's computer vision library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/zappar-xr/zappar-threejs/",
"issues": "https://github.com/zappar-xr/zappar-threejs/issues/",
"homepage": "https://zap.works/universal-ar/",
"scripts": {
"build:standalone": "webpack --config=webpack.config.standalone.js --mode=production",
"build:standalone-debug": "webpack --config=webpack.config.standalone.dev.js --mode=development",
"build:module": "tsc",
"build:tests": "webpack --config=webpack.config.tests.js --mode=development",
"build": "npm run build:standalone && npm run build:module && npm run build:tests",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && jest",
"test:post": "npm run build:standalone && npm run build:module && webpack --config=webpack.config.tests.js --mode=development --env POST_TEST && jest",
"test:nobuild": "jest",
"tests": "npm run build && webpack serve --mode development --config=webpack.config.tests.js",
"tests:nobuild": "webpack serve --mode development --config=webpack.config.tests.js",
"start": "npm run tests",
"kill-test-process": "lsof -P | grep ':8081' | awk '{print $2}' | xargs kill -9",
"typedoc": "typedoc --out docs src/index.ts --excludePrivate --excludeProtected --theme minimal"
},
"author": {
"name": "Zappar Limited",
"url": "https://www.zappar.com/"
},
"license": "MIT",
"files": [
"README.md",
"CHANGELOG.md",
"lib/**/*",
"umd/**/*"
],
"devDependencies": {
"@types/jest": "27.4.0",
"@types/jest-environment-puppeteer": "5.0.0",
"@types/jest-image-snapshot": "4.3.1",
"@types/node": "17.0.16",
"@types/three": "^0.152.1",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"@zappar/jest-console-logs": "1.0.4",
"copy-webpack-plugin": "10.2.4",
"eslint": "8.8.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-tsdoc": "0.2.14",
"eslint-webpack-plugin": "3.1.1",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"husky": "4.3.8",
"jest": "27.5.1",
"jest-image-snapshot": "4.5.1",
"jest-puppeteer": "6.1.0",
"lint-staged": "11.2.6",
"node-fetch": "2.6.1",
"prettier": "2.5.1",
"puppeteer": "13.2.0",
"three": "^0.157.0",
"ts-jest": "27.1.3",
"ts-loader": "9.2.6",
"ts-node": "10.5.0",
"typedoc": "0.22.11",
"typescript": "4.5.5",
"webpack": "5.68.0",
"webpack-cdn-plugin": "3.3.1",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.7.4",
"worker-loader": "3.0.8"
},
"peerDependencies": {
"three": "0.118.0 - 0.157.0"
},
"dependencies": {
"@zappar/zappar": "2.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.(ts|tsx)": [
"npm run --silent lint:fix"
]
}
}