-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.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
{
"name": "immurl",
"version": "1.2.0",
"description": "",
"source": "lib/immurl.ts",
"main": "dist/immurl.js",
"module": "dist/immurl.module.js",
"unpkg": "dist/immurl.umd.js",
"types": "dist/immurl.d.ts",
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit",
"build": "microbundle",
"dev": "microbundle watch",
"prepublishOnly": "npm run build",
"docs": "typedoc --stripInternal --excludePrivate --mode file --out docs lib"
},
"files": [
"dist"
],
"author": {
"email": "the.tomsherman@gmail.com",
"name": "Tom Sherman",
"url": "https://github.com/tom-sherman"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tom-sherman/immurl.git"
},
"homepage": "https://github.com/tom-sherman/immurl",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.3",
"@types/lodash": "^4.14.157",
"babel-jest": "^26.1.0",
"jest": "^26.1.0",
"lodash": "^4.17.15",
"microbundle": "^0.12.2",
"prettier": "^2.0.5",
"typedoc": "^0.17.8",
"typescript": "^3.9.6"
}
}