-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 931 Bytes
/
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
{
"name": "hdr.js",
"version": "0.2.0",
"description": "RGBE(.hdr) file reader/writer.",
"main": "dist/hdr.js",
"module": "dist/hdr.mjs",
"scripts": {
"clean": "rm -rf dist",
"build": "npm test && npm run clean && rollup --config rollup.config.js",
"build-and-publish": "npm test && npm run clean && rollup --config rollup.config.js --environment BUILD:production && npm publish . --access public",
"test": "jest"
},
"keywords": [
"hdr",
"rgbe"
],
"author": "Venus <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bbbbx/hdr.js.git"
},
"homepage": "https://github.com/bbbbx/hdr.js",
"devDependencies": {
"@rollup/plugin-typescript": "^9.0.2",
"@types/jest": "^29.2.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"rollup": "^3.2.3",
"ts-jest": "^29.0.3",
"tslib": "^2.4.0"
}
}