-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 KB
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
{
"name": "@tilework/opus",
"repository": {
"type": "git",
"url": "https://github.com/tilework/opus"
},
"version": "0.0.10",
"license": "MIT",
"files": [
"dist/**/*"
],
"main": "dist/opus.js",
"typings": "dist/opus.d.ts",
"scripts": {
"build": "rm -rf dist && rollup -c",
"prepublishOnly": "npm run build && npm run test",
"test": "jest"
},
"dependencies": {
"node-fetch": "^2.6.2",
"tslib": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/node-fetch": "2.5.12",
"jest": "^26.6.3",
"rollup": "^2.45.2",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}