-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.82 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
74
75
76
77
78
79
80
81
{
"name": "@valeera/mathx",
"version": "0.1.71",
"description": "A math library written in TS.",
"main": "build/Mathx.js",
"repository": "ValeeraJS/Mathx",
"jsnext:main": "build/Mathx.module.js",
"module": "build/Mathx.module.js",
"types": "build/index.d.ts",
"files": [
"build",
"LICENSE",
"package.json",
"README.md",
"src"
],
"directories": {
"docs": "docs",
"examples": "examples",
"src": "src"
},
"scripts": {
"build": "rollup -c scripts/rollup.config.mjs",
"docs": "yarn run tsc && jsdoc -c jsdoc.json",
"tsc": "tsc src/index.ts",
"start": "npm run dev",
"lint": "eslint src --ext js --ext ts",
"test": "nyc --reporter=html --reporter=text mocha -r ts-node/register ./test/*.ts",
"travis": "npm run lint && npm test"
},
"keywords": [
"math",
"utils",
"module",
"valeera",
"tools",
"library"
],
"author": "hypnosnova",
"license": "MIT",
"devDependencies": {
"@pixi/jsdoc-template": "^2.6.0",
"@types/chai": "latest",
"@types/mocha": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"chai": "latest",
"concurrently": "latest",
"eslint": "latest",
"eslint-config-valeera": ">=0.1.4",
"eslint-plugin-html": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-tslint": "latest",
"eslint-plugin-tsdoc": "^0.2.17",
"esm": "latest",
"jsdoc": "latest",
"jsdoc-plugin-typescript": "latest",
"mocha": "latest",
"nyc": "latest",
"prettier": "latest",
"rollup": "latest",
"rollup-plugin-json": "latest",
"rollup-plugin-typescript2": "latest",
"ts-node": "latest",
"tslib": "latest",
"typescript": "latest"
},
"jspm": {
"files": [
"package.json",
"LICENSE",
"README.md",
"build/Mathx.js",
"build/Mathx.module.js"
],
"directories": {}
},
"publishConfig": {
"access": "public"
}
}