-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.29 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
{
"name": "@haeley/colors",
"version": "0.2.1",
"license": "MIT",
"description": "Color and color scale tools for the haeley real-time rendering framework.",
"author": "Daniel Limberger",
"main": "dist/colors.umd.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/colors.es.js",
"require": "./dist/colors.umd.js"
},
"module": "dist/colors.es.js",
"files": [
"dist/*",
"source/**/*.ts",
"source/data/*.json",
"source/**/*.json"
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/halb3/colors/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/halb3/colors.git"
},
"maintainers": [
{
"name": "Daniel Limberger",
"email": "[email protected]"
}
],
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-spies": "^1.0.3",
"@types/git-rev-sync": "^2.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.17",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"chai-spies": "^1.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.9.0",
"git-rev-sync": "^3.0.1",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"sinon": "^13.0.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"typescript": "^4.5.4",
"vite": "^2.8.1"
},
"dependencies": {
"@haeley/auxiliaries": "github:halb3/auxiliaries",
"@haeley/math": "github:halb3/math"
},
"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",
"prepare": "npm run build",
"preversion": "npm install && npm run build && npm run test"
},
"keywords": [
"haeley",
"multiframe",
"progressive",
"computer graphics",
"real-time"
]
}