-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.12 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
{
"name": "fischer960",
"version": "1.0.0",
"description": "Fischer Random Chess / Chess960 library",
"license": "MIT",
"repository": "joakim/fischer960",
"author": "Joakim",
"keywords": [
"♟",
"fischer",
"random",
"chess",
"chess960",
"frchess",
"fischerandom",
"variant",
"randomizer",
"generator"
],
"files": [
"dist"
],
"main": "dist/fischer960.cjs.js",
"module": "dist/fischer960.esm.js",
"browser": "dist/fischer960.umd.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"pretest": "npm run build",
"release": "release-it"
},
"engines": {
"node": ">= 9.0.0"
},
"devDependencies": {
"@rollup/plugin-buble": "^1.0.1",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"jest": "^29.2.2",
"release-it": "^15.5.0",
"rollup": "^3.2.3"
},
"release-it": {
"github": {
"release": true
}
},
"jest": {
"testMatch": [
"**/test/**/*.?(m)js",
"**/?(*.)+(spec|test).?(m)js"
]
}
}