-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "bracketry",
"version": "1.1.3",
"description": "JavaScript library that visualizes tournament brackets",
"type": "module",
"types": "./index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"mode": "production",
"scripts": {
"test": "jest --silent",
"cypress": "npx cypress run",
"btest": "rollup -c && jest --silent",
"build": "rollup -c",
"start": "http-server -p 3000",
"watch": "rollup -c --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbachinin/bracketry.git"
},
"author": "sbachinin",
"license": "MIT",
"bugs": {
"url": "https://github.com/sbachinin/bracketry/issues"
},
"homepage": "https://github.com/sbachinin/bracketry#readme",
"engines": {
"node": ">=16.2.0"
},
"keywords": [
"visualization",
"diagram",
"sports",
"playoffs",
"bracket",
"draws"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"cypress": "^11.0.0",
"http-server": "^14.1.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"resize-observer-polyfill": "^1.5.1",
"rollup": "^2.60.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.77.8",
"strip-css-comments": "^5.0.0"
}
}