-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.5 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
{
"name": "isometric-css",
"version": "2.2.4",
"description": "A lightweight JavaScript library to build isometric projections through declarative HTML attributes",
"keywords": [
"isometric",
"projection",
"isometric-projection",
"css",
"isometric-css",
"draw",
"drawing",
"engineering",
"engineering-drawing",
"coordinates",
"graphics",
"typescript"
],
"license": "Apache-2.0",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/elchininet/isometric-css"
},
"author": "ElChiniNet",
"private": false,
"sideEffects": false,
"scripts": {
"build": "rollup --config rollup.config.js --bundleConfigAsCjs",
"test:ts": "tsc --noEmit",
"test:lint": "eslint \"src/**/*.ts\"",
"test:unit": "jest --verbose",
"test:all": "pnpm test:ts && pnpm test:lint && pnpm test:unit",
"prepare": "pnpm build",
"prepublishOnly": "pnpm test:all",
"version": "git add .",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.29.1",
"rollup-plugin-ts": "^3.4.5",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
}
}