-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.91 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
{
"name": "@zappar/zappar-aframe",
"version": "0.0.1",
"description": "A-Frame wrappers for Zappar's computer vision library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build:standalone": "webpack --config=webpack.config.standalone.ts --mode=production",
"build:standalone-debug": "webpack --config=webpack.config.standalone.dev.ts --mode=development",
"build:module": "tsc",
"build:tests": "webpack --config=webpack.config.tests.ts --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.ts --mode=development --env POST_TEST && jest",
"test:nobuild": "jest",
"tests": "npm run build && webpack serve --mode development --config=webpack.config.tests.ts",
"tests:nobuild": "webpack serve --mode development --config=webpack.config.tests.ts",
"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"
},
"files": [
"umd/**.*",
"lib/**/*",
"CHANGELOG.md"
],
"upkg": "umd/zappar-aframe.js",
"author": {
"name": "Zappar Limited",
"url": "https://www.zappar.com/"
},
"license": "MIT",
"devDependencies": {
"@types/aframe": "^1.2.0",
"@types/jest": "^27.4.0",
"@types/jest-environment-puppeteer": "^5.0.0",
"@types/jest-image-snapshot": "^4.3.0",
"@types/node": "^14.17.4",
"@types/three": "^0.146.0",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^3.11.5",
"@zappar/eslint-config-zappar": "1.0.9",
"@zappar/jest-console-logs": "^1.0.4",
"aframe": "^1.3.0",
"copy-webpack-plugin": "^9.0.0",
"eslint": "^8.0.0",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.3.1",
"husky": "^4.3.8",
"jest": "^27.5.1",
"jest-image-snapshot": "^4.5.0",
"jest-puppeteer": "^6.1.0",
"lint-staged": "^11.0.0",
"node-fetch": "^2.6.1",
"puppeteer": "^13.3.2",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"typedoc": "^0.22.12",
"typescript": "^4.2.3",
"webpack": "^5.38.1",
"webpack-cdn-plugin": "^3.3.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.7.4",
"worker-loader": "^3.0.8"
},
"peerDependencies": {
"aframe": "1.2.0 - 1.3.0"
},
"dependencies": {
"@zappar/zappar-threejs-for-aframe": "^2.0.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.(ts|tsx)": [
"npm run --silent lint:fix"
]
},
"engines": {
"node": ">= 10.0.0"
}
}