-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "@tradle/embed",
"version": "1.4.3",
"description": "utils for replacing, extracting and resolving media embedded in tradle objects",
"main": "./cjs/index.js",
"types": "./cjs/index.d.ts",
"type": "commonjs",
"exports": {
".": {
"types": "./cjs/index.d.ts",
"require": "./cjs/index.js"
},
"./types": {
"types": "./cjs/types.d.ts",
"require": "./cjs/types.js"
}
},
"keywords": [],
"author": "Mark Vayngrib <[email protected]> (http://github.com/mvayngrib)",
"license": "MIT",
"scripts": {
"build": "tsc -p ./tsconfig.cjs.json",
"prepare": "npm run build && npm run coverage",
"test": "npm run unit",
"coverage": "c8 npm run unit",
"unit": "ts-node test/index"
},
"dependencies": {
"@types/node": "*",
"@types/strong-data-uri": "^1.0.0",
"caseless": "^0.12.0",
"dot-prop": "^6.0.1",
"ip": "^1.1.5",
"p-map": "^4.0.0",
"strong-data-uri": "^1.0.6",
"traverse": "^0.6.6"
},
"devDependencies": {
"@types/caseless": "^0.12.2",
"@types/ip": "^1.1.0",
"@types/node": "^10.17.9",
"@types/traverse": "^0.6.32",
"c8": "^7.11.0",
"fresh-tape": "^5.5.0",
"ts-node": "^10.5.0",
"typescript": ">4.4.4 && <4.8"
}
}