-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.74 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
{
"name": "@valeera/tree",
"version": "0.2.0",
"description": "Data structure: Tree.",
"main": "build/Tree.js",
"repository": "ValeeraJS/Tree",
"jsnext:main": "build/Tree.module.js",
"module": "build/Tree.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",
"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": [
"WebRTCRecorder",
"utils",
"module",
"WebRTC",
"WebGL"
],
"author": "hypnosnova",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/eslint-plugin-tslint": "^6.20.0",
"@typescript-eslint/parser": "^6.5.0",
"chai": "^4.3.8",
"concurrently": "^8.2.1",
"eslint": "^8.48.0",
"eslint-config-valeera": "^0.1.4",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-prettier": "^5.0.0",
"esm": "^3.2.25",
"http-server": "^14.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"rollup": "^3.28.1",
"rollup-plugin-typescript2": "^0.35.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"jspm": {
"files": [
"package.json",
"LICENSE",
"README.md",
"build/Tree.js",
"build/Tree.min.js",
"build/Tree.module.js",
"src"
],
"directories": {}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@valeera/mathx": "0.1.61-alpha1"
}
}