-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.7 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
{
"name": "p4.js",
"version": "0.6.13",
"description": "Portable parallel processing pipelines",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"scripts": {
"build": "node build/build.js",
"test": "webpack-dev-server --inline --progress --config build/webpack.test.config.js",
"site": "webpack-dev-server --inline --progress --config build/webpack.site.config.js",
"remote-test": "webpack-dev-server --inline --progress --host 0.0.0.0 --config build/webpack.test.config.js",
"dev": "webpack-dev-server --config build/webpack.dev.config.js",
"start": "npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpkli/p4.git"
},
"keywords": [
"gpu computing",
"data processing",
"interactive visualization"
],
"author": "Kelvin Li",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jpkli/p4/issues"
},
"homepage": "https://github.com/jpkli/p4#readme",
"devDependencies": {
"ace-builds": "^1.4.1",
"axios": "^0.18.1",
"chai": "^4.1.2",
"file-loader": "^4.2.0",
"font-awesome": "^4.7.0",
"gl": "^4.4.0",
"highlight.js": "^9.14.2",
"html-loader": "^0.5.5",
"jStat": "^1.7.1",
"js-yaml-loader": "^1.0.1",
"mocha": "^5.1.1",
"raw-loader": "^3.1.0",
"showdown": "^1.9.1",
"showdown-highlight": "^2.1.3",
"split.js": "^1.3.5",
"style-loader": "^1.0.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.39.3",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"p3.js": "^0.8.8"
}
}