-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
{
"name": "malevic",
"version": "0.20.2",
"description": "Malevič.js - minimalistic reactive UI library",
"keywords": [
"ui",
"dom",
"svg",
"animation",
"render",
"tween",
"react",
"d3"
],
"author": "Alexander Shutau <[email protected]> (http://shutov.by/)",
"license": "MIT",
"scripts": {
"build": "node tasks/build.mjs --release",
"code-style": "prettier --single-quote --tab-width 4 --trailing-comma all --no-bracket-spacing --arrow-parens always --end-of-line lf --write 'src/**/*.(js|ts|tsx)' 'tasks/**/*.*' 'tests/**/*.*' '!tests/coverage/**/*.*' 'index.d.ts' 'examples/**/*.*'",
"examples": "node tasks/build.js --examples",
"prepublishOnly": "npm test && npm run build",
"test": "jest --coverage",
"test:clear-cache": "jest --clearCache",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest --runInBand --no-cache --watch",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/alexanderby/malevic.git"
},
"bugs": {
"url": "https://github.com/alexanderby/malevic/issues"
},
"main": "umd/index.js",
"module": "index.mjs",
"devDependencies": {
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@types/jest": "29.5.12",
"canvas": "2.11.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.3.3",
"rollup": "4.19.0",
"ts-jest": "29.2.3",
"tslib": "2.6.3",
"typescript": "5.5.3"
}
}