-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "@kurtbruns/vector",
"version": "0.8.4",
"description": "A library for creating vector graphics for the browser.",
"author": "Kurt Bruns",
"main": "dist/lib/index.js",
"browser": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js && yarn tsc",
"test": "jest",
"test:update": "jest -u",
"tsc": "tsc --declaration true --sourceMap false --skipLibCheck",
"watch": "tsc -w",
"lint": "eslint 'src/**/*.{js,ts}'",
"prettify": "prettier --write 'src/**/*.{js,ts}'",
"preversion": "npm run clean && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/kurtbruns/vector"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.10",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"mathjax": ">=3.0.0"
}
}