-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 2.89 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
{
"name": "gpu-sort",
"version": "1.0.3",
"description": "GPU accelerated asynchronous sorting",
"main": "lib/index.js",
"scripts": {
"test": "tsc --noEmit && jest --runInBand --coverage",
"build": "trash lib && make-dir lib/shaders && cpy src/shaders/** lib/shaders/ && tsc && jest --runInBand --coverage",
"bundle": "webpack --progress --config-name dist",
"bench-browser": "webpack --progress --config-name bench-generate && npm run debug --prefix serve-benchmark",
"gh-pages-deploy": "webpack --progress --config-name bench-generate && npm run build --prefix serve-benchmark && gh-pages -d serve-benchmark/build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/demskie/gpu-sort.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"sort",
"bitonic",
"radix",
"gpu",
"gpgpu",
"compute",
"webgl",
"glsl",
"shader",
"async",
"promises"
],
"author": "Alex Demskie",
"license": "MIT",
"homepage": "https://demskie.github.io/gpu-sort",
"bugs": {
"url": "https://github.com/demskie/gpu-sort/issues"
},
"typings": "lib/index.d.ts",
"browserslist": [
"node 6.5"
],
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testRegex": [
".*.test\\.ts"
],
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json",
"diagnostics": false
}
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/config/",
"<rootDir>/build/"
],
"collectCoverage": false,
"collectCoverageFrom": [
"!**/node_modules/**",
"!**/vendor/**",
"**/*.ts"
]
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.4",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-static-fs": "^3.0.0",
"babel-runtime": "^6.26.0",
"coveralls": "^3.0.9",
"cpy-cli": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"gh-pages": "^2.2.0",
"gl": "^4.4.1",
"jest": "^25.1.0",
"make-dir-cli": "^2.0.0",
"prettier": "^1.19.1",
"trash-cli": "^3.0.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"gpu-compute": "^1.0.1"
}
}