-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "tilesheets",
"version": "1.6.1",
"description": "A small library providing helpers to handle tile sheets.",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rm -rf docs && npx tsc && rollup --config rollup.config.doc.js && cp -r examples/images docs && cp examples/index.html docs",
"npm": "npx tsc && rollup --config rollup.config.lib.js",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll"
},
"repository": {
"type": "git",
"url": "[email protected]:adrien-gueret/tilesheets.git"
},
"keywords": [
"tilesheet",
"tile",
"javascript"
],
"author": "Adrien Guéret",
"license": "ISC",
"bugs": {
"url": "https://github.com/adrien-gueret/tilesheets/issues"
},
"homepage": "https://github.com/adrien-gueret/tilesheets#readme",
"devDependencies": {
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^26.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.24.0",
"ts-jest": "^29.2.5",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
}
}