-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.24 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
{
"name": "javascript-algebra",
"version": "1.10.8",
"description": "Алгебраические методы для матриц, векторов и кватернионов",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/eslint/bin/eslint.js .",
"clear": "rm -rf node_modules package-lock.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xaota/javascript-algebra.git"
},
"keywords": [
"javascript",
"js",
"primitives",
"esmodules",
"algebra",
"geometry",
"2d",
"3d",
"graphics",
"vector",
"quaternion",
"matrix",
"math"
],
"author": "https://github.com/xaota",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/xaota/javascript-algebra/issues"
},
"homepage": "https://github.com/xaota/javascript-algebra#readme",
"devDependencies": {
"@types/node": "^16.4.7",
"babel-eslint": "^10.1.0",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1"
},
"dependencies": {
"javascript-std-lib": "latest"
}
}