-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.17 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
{
"name": "@haeley/template",
"version": "0.0.0",
"license": "MIT",
"description": "Template for a TypeScript library for the haeley real-time rendering framework.",
"author": "Daniel Limberger",
"main": "dist/haeley-template.umd.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/haeley-template.es.js",
"require": "./dist/haeley-template.umd.js"
},
"module": "dist/haeley-template.es.js",
"files": [
"dist/*",
"source/**/*.ts"
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/halb3/template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/halb3/template.git"
},
"maintainers": [
{
"name": "Daniel Limberger",
"email": "[email protected]"
}
],
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/chai-spies": "^1.0.3",
"@types/git-rev-sync": "^2.0.0",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.45",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.3.7",
"chai-spies": "^1.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.44.0",
"git-rev-sync": "^3.0.2",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"sinon": "^12.0.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"url": "^0.11.1",
"vite": "^2.9.16"
},
"dependencies": {
},
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"build:dev": "vite dev",
"test": "mocha",
"test:nyc": "nyc mocha",
"lint": "eslint source",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"postversion": "git push && git push --tags",
"prepack": "npm run preversion",
"preversion": "npm install && npm run build && npm run test"
},
"keywords": [
"haeley",
"multiframe",
"progressive",
"computer graphics",
"real-time"
]
}