forked from HSF/phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.32 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": "phoenix-event-display",
"version": "1.7.0",
"description": "API for web-based experiment independent event display.",
"main": "dist/index",
"types": "dist/index",
"author": "Phoenix contributors (https://github.com/HSF/phoenix/graphs/contributors)",
"license": "Apache-2.0",
"homepage": "http://github.com/HSF/phoenix/tree/master/packages/phoenix-event-display#readme",
"repository": {
"type": "git",
"url": "git://github.com/HSF/phoenix.git"
},
"files": [
"dist"
],
"scripts": {
"tsc": "tsc",
"tsc:build": "tsc -p tsconfig.build.json",
"start": "yarn tsc:build --watch",
"build": "rm -rf ./dist && yarn tsc:build",
"build:es2015": "yarn tsc:build --module es2015 --target es2015 --outDir dist/es2015",
"build:esm": "yarn tsc:build --module es2015 --target es5 --outDir dist/esm",
"build:cjs": "yarn tsc:build --module commonjs --target es5 --outDir dist/cjs",
"build:bundle": "webpack -c configs/webpack.conf.js",
"tsc-d": "yarn tsc:build --declaration --emitDeclarationOnly --esModuleInterop --outFile dist/index.d.ts",
"prepare": "yarn build",
"prepublishOnly": "yarn build:bundle",
"docs": "node scripts/gen-api-docs.js",
"docs:coverage": "yarn compodoc -p configs/compodoc.conf.json --coverageTest 100",
"test": "karma start configs/karma.conf.js",
"test:coverage": "yarn test",
"prettier": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore",
"prettier:check": "yarn prettier --check .",
"prettier:write": "yarn prettier --write ."
},
"dependencies": {
"@tweenjs/tween.js": "^17.4.0",
"dat.gui": "^0.7.7",
"jszip": "^3.6.0",
"stats-js": "^1.0.1",
"three": "^0.127.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.13.10",
"@compodoc/compodoc": "^1.1.11",
"@types/dat.gui": "^0.7.6",
"@types/jasmine": "^3.6.9",
"@types/node": "^14.14.37",
"@types/three": "^0.126.2",
"jasmine-core": "^3.7.1",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^4.0.1",
"karma-typescript": "^5.5.1",
"karma-typescript-es6-transform": "^5.5.1",
"prettier": "2.2.1",
"ts-loader": "^8.1.0",
"tslint": "~6.1.3",
"typescript": "^4.2.3",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
}
}