-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
116 lines (116 loc) · 3.57 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
{
"name": "aframe-forcegraph-component",
"version": "3.1.0",
"description": "A 3D Force-Directed Graph component for A-Frame.",
"main": "index.js",
"unpkg": "dist/aframe-forcegraph-component.min.js",
"scripts": {
"dist": "npm run dist:min && npm run dist:max",
"dist:max": "webpack",
"dist:min": "cross-env NODE_ENV=production webpack",
"lint": "semistandard -v | snazzy",
"lint:fix": "semistandard --fix",
"prepare": "npm run dist",
"ghpages": "ghpages",
"start": "webpack-dev-server --host 0.0.0.0 --progress --colors --hot-only --inline --port 5000",
"test": "karma start ./tests/karma.conf.js",
"test:firefox": "karma start ./tests/karma.conf.js --browsers Firefox",
"test:chrome": "karma start ./tests/karma.conf.js --browsers Chrome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/aframe-forcegraph-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"mozvr",
"webvr",
"3d",
"force",
"graph",
"forcegraph",
"d3"
],
"author": {
"name": "Vasco Asturiano <vastur@gmail.com>",
"url": "https://github.com/vasturiano"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vasturiano/aframe-forcegraph-component/issues"
},
"homepage": "https://github.com/vasturiano/aframe-forcegraph-component#readme",
"files": [
"index.*",
"dist/**/*",
"examples/**/*"
],
"dependencies": {
"accessor-fn": "1",
"three-forcegraph": "1"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-proposal-do-expressions": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-bind": "^7.18.9",
"@babel/plugin-proposal-function-sent": "^7.18.6",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-pipeline-operator": "^7.18.9",
"@babel/plugin-proposal-throw-expressions": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.21.4",
"aframe": "*",
"babel-loader": "^9.1.2",
"babel-preset-minify": "^0.5.2",
"chai": "^4.3.7",
"chai-shallow-deep-equal": "^1.4.6",
"cross-env": "7.0.3",
"ghpages": "^0.0.10",
"karma": "^4.4.1",
"karma-browserify": "^4.4.2",
"karma-chai-shallow-deep-equal": "0.0.4",
"karma-chrome-launcher": "2.0.0",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"mocha": "^6.2.2",
"randomcolor": "^0.5.4",
"semistandard": "^14.2.2",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"sinon": "^7.5.0",
"sinon-chai": "^3.7.0",
"snazzy": "^8.0.0",
"superagent": "^5.3.1",
"three": "*",
"webpack": "^5.75.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-sources": "2.2.0"
},
"semistandard": {
"globals": [
"AFRAME",
"THREE"
],
"ignore": [
"examples/build.js",
"dist/**"
]
}
}