-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.12 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.12 KB
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
{
"dependencies": {
"chess.js": "^1.0.0"
},
"name": "@alepot55/chessboardjs",
"version": "2.3.0",
"main": "dist/chessboard.cjs.js",
"module": "dist/chessboard.esm.js",
"browser": "dist/chessboard.iife.js",
"type": "module",
"exports": {
".": {
"import": "./dist/chessboard.esm.js",
"require": "./dist/chessboard.cjs.js",
"default": "./dist/chessboard.esm.js"
},
"./dist/*": "./dist/*"
},
"files": [
"dist/",
"src/",
"assets/"
],
"scripts": {
"dev": "rollup -c config/rollup.config.js --watch",
"build": "rollup -c config/rollup.config.js",
"build:all": "npm run build:esm && npm run build:cjs && npm run build:umd && npm run build:iife",
"build:esm": "rollup -c config/rollup.config.js --format esm",
"build:cjs": "rollup -c config/rollup.config.js --format cjs",
"build:umd": "rollup -c config/rollup.config.js --format umd",
"build:iife": "rollup -c config/rollup.config.js --format iife",
"test": "jest --config config/jest.config.js",
"test:watch": "jest --config config/jest.config.js --watch",
"test:coverage": "jest --config config/jest.config.js --coverage",
"lint": "echo 'ESLint not configured yet'",
"lint:fix": "echo 'ESLint not configured yet'",
"docs": "echo 'JSDoc not configured yet'",
"examples": "echo 'Example server not configured yet'",
"prepublishOnly": "npm run test && npm run build"
},
"author": "alepot55",
"license": "ISC",
"description": "Chessboard configuration with multiple customization options. By alepot55",
"repository": {
"type": "git",
"url": "git+https://github.com/alepot55/ChessBoard.git"
},
"keywords": [
"chess",
"chessboard"
],
"bugs": {
"url": "https://github.com/alepot55/ChessBoard/issues"
},
"homepage": "https://github.com/alepot55/ChessBoard#readme",
"devDependencies": {
"@babel/core": "^7.26.8",
"@babel/preset-env": "^7.26.8",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.34.7"
}
}