This repository has been archived by the owner on Mar 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@cognite/3d-web-parser",
"version": "0.13.7",
"description": "Parser for Cognite 3D viewer",
"contributors": [
"Anders Hafreager <[email protected]>",
"Fredrik Anfinsen <[email protected]>"
],
"author": "Anders Hafreager ([email protected])",
"license": "Apache-2.0",
"keywords": [
"cognite",
"THREE",
"3d",
"parser",
"typescript"
],
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"prepublishOnly": "yarn build",
"test": "jest --config=jest.config.js",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint:fix": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "yarn clean && tsc && yarn esCheck",
"prepush": "yarn lint && yarn test",
"esCheck": "es-check --module es6 './dist/index.js'",
"prepare": "yarn build"
},
"devDependencies": {
"@cognite/tslint-config-cognite-3d": "^1.0.3",
"@types/jest": "^24.0.19",
"@types/node": "^12.11.1",
"@types/three": "^0.93.28",
"es-check": "^5.0.0",
"jest": "^24.9.0",
"prettier": "^1.15.2",
"three": "^0.110.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.1.6"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"three": "^0.110.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cognitedata/3d-web-parser.git"
},
"sideEffects": false,
"dependencies": {
"protobufjs": "^6.8.8"
}
}