-
Notifications
You must be signed in to change notification settings - Fork 444
/
package.json
117 lines (117 loc) · 3.07 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "tensorspace",
"version": "0.6.1",
"description": "Neural network 3D visualization framework",
"main": "dist/tensorspace.cjs.js",
"scripts": {
"test": "npm run test-unit && npm run test-e2e",
"test-unit": "mocha",
"test-e2e": "./scripts/test-e2e.sh",
"build": "rollup --config rollup.config.js",
"build-npm": "rollup --config rollup.config.npm.js",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"publish-local": "yalc publish"
},
"directories": {
"assets": "static resource for github repo",
"docs": "document for users and contributors",
"examples": "tensorspace.js show cases",
"test": "test scripts",
"dist": "released files, build code for different environment",
"build": "build files folder for local development",
"src": "source code"
},
"dependencies": {
"@tensorflow/tfjs": "^1.0.0",
"@tweenjs/tween.js": "^17.2.0",
"install": "^0.12.1",
"npm": "^6.4.1",
"stats-js": "^1.0.0",
"three": "^0.102.1",
"three-trackballcontrols": "^0.0.7"
},
"devDependencies": {
"all-contributors-cli": "^5.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"eslint": "^5.13.0",
"eslint-config-mdcs": "^4.2.3",
"jasmine-core": "^3.3.0",
"karma": "^3.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-html2js-preprocessor": "^1.1.0",
"karma-jasmine": "^2.0.1",
"karma-spec-reporter": "0.0.32",
"mocha": "^4.1.0",
"puppeteer": "^1.11.0",
"rollup": "^0.66.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^4.0.1",
"terser": "^3.14.1",
"yalc": "^1.0.0-pre.27"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tensorspace-team/tensorspace.git"
},
"homepage": "https://github.com/tensorspace-team/tensorspace#readme",
"author": "tensorspace-team",
"license": "Apache-2.0",
"keywords": [
"tensor",
"tensorflow",
"space",
"three",
"tween",
"visual",
"machine",
"learning",
"graphics",
"visual",
"diagram",
"interface"
],
"contributors": [
{
"name": "syt123450",
"email": "[email protected]",
"url": "https://github.com/syt123450"
},
{
"name": "zchholmes",
"email": "[email protected]",
"url": "https://github.com/zchholmes"
},
{
"name": "CharlesLiuyx",
"email": "[email protected]",
"url": "https://github.com/CharlesLiuyx"
},
{
"name": "lq3297401",
"email": "[email protected]",
"url": "https://github.com/lq3297401"
},
{
"name": "Truemedia",
"url": "https://github.com/Truemedia"
},
{
"name": "dylans",
"url": "https://github.com/dylans"
},
{
"name": "BoTime",
"url": "https://github.com/BoTime"
},
{
"name": "kamidipreetham",
"url": "https://github.com/kamidipreetham"
}
]
}