-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.68 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.68 KB
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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "vec2-fn",
"version": "0.2.0",
"description": "A type-safe set of functions for working with vec2-like objects and arrays.",
"main": "bin/cjs/index.js",
"module": "bin/es/index.js",
"types": "bin/dts/index.d.ts",
"scripts": {
"start": "npm run test-watch",
"test": "npx --no-install jest",
"test-watch": "npm run test -- --watch",
"test-coverage": "npx jest --collect-coverage",
"build": "npm run pre-build && npm run build-es && npm run build-cjs && npm run build-iife && npm run post-build",
"build-es": "tsc --outDir bin/es --target es5 --module es2015",
"build-cjs": "tsc --outDir bin/cjs --target es6 --module commonjs",
"build-iife": "npx rollup --config rollup.config.js",
"watch-es": "npm run build-es -- -w",
"watch-cjs": "npm run build-cjs -- -w",
"post-build": "node ./build-scripts/post-build.js",
"pre-build": "npx --no-install rimraf bin",
"docs": "npx --no-install rimraf docs && npm run docs-html && npm run docs-md && npm run docs-coverage && npm run docs-readme",
"docs-md": "npx --no-install rimraf docs/md && npx typedoc --options build-scripts/typedoc.md.js --plugin typedoc-plugin-markdown",
"docs-html": "npx --no-install rimraf docs && npx typedoc --options build-scripts/typedoc.html.js --plugin none",
"docs-coverage": "npm run test-coverage && jest-coverage-badges output \"./docs/assets\"",
"docs-readme": "node ./build-scripts/build-readme.js",
"eslint": "npx --no-install eslint src/**/*.ts",
"version": "npm i && npm run build && npm run docs && git add . -A",
"release": "release-it"
},
"dependencies": {
"tslib": "^2.2.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^3.0.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"eslint": "^7.26.0",
"jest": "^26.6.3",
"jest-coverage-badges": "^1.1.2",
"release-it": "^14.10.1",
"rollup": "^2.47.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"ts-expect": "^1.3.0",
"ts-jest": "^26.5.6",
"typedoc": "^0.20.36",
"typedoc-plugin-markdown": "^3.8.0",
"typescript": "^4.2.4"
},
"prettier": {
"printWidth": 200,
"endOfLine": "auto",
"useTabs": true
},
"files": [
"bin/*",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lloydevans/vec2-fn.git"
},
"keywords": [
"vec2",
"vector",
"math",
"maths",
"js",
"javascript",
"ts",
"typescript",
"functional",
"utility"
],
"author": "Lloyd Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/lloydevans/vec2-fn/issues"
},
"homepage": "https://github.com/lloydevans/vec2-fn#readme"
}