-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.28 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ella-math",
"version": "0.4.7",
"description": "Basic geometry and linear algebra library",
"type": "module",
"main": "dist/index.umd.min.js",
"types": "dist/index.d.ts",
"module": "dist/index.esm.min.js",
"keywords": [
"maths",
"vector",
"matrix"
],
"exports": {
".": {
"require": "./dist/index.umd.min.js",
"import": "./dist/index.esm.min.js"
}
},
"scripts": {
"test": "jest --coverage",
"docs": "npx typedoc src/index.ts && touch docs/.nojekyll",
"lint": "npm run lint:js -s && npm run lint:package",
"lint:js": "eslint src",
"lint:package": "npx @skypack/package-check",
"build:types": "tsc -d --emitDeclarationOnly",
"build:js": "rollup -c rollup.config.js",
"build:minjs:umd": "terser dist/index.umd.js --compress --mangle > dist/index.umd.min.js",
"build:minjs:es5": "terser dist/index.umd.es5.js --compress --mangle > dist/index.umd.es5.min.js",
"build:minjs:esm": "terser dist/index.esm.js --compress --mangle > dist/index.esm.min.js",
"build:minjs": "npm run build:minjs:esm -s && npm run build:minjs:umd -s && npm run build:minjs:es5 -s",
"build": "npm run build:js -s && npm run build:minjs -s && npm run build:types -s",
"prepublishOnly": "npm run lint -s && npm test -s && npm run build",
"semantic-release": "semantic-release"
},
"files": [
"src",
"dist"
],
"repository": "github:learosema/ella-math/",
"author": "Lea Rosema",
"license": "MIT",
"bugs": {
"url": "https://github.com/learosema/ella-math/issues"
},
"homepage": "https://learosema.github.io/ella-math/",
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@semantic-release/npm": "^9.0.2",
"@skypack/package-check": "^0.2.2",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.4.2",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"rollup": "^3.15.0",
"semantic-release": "^20.1.0",
"terser": "^5.16.3",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typedoc": "^0.23.25",
"typescript": "^4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}