-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 973 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
{
"name": "domain-wait",
"version": "1.2.0",
"description": "Allows you to use async/await syntax in ASP.NET Core NodeServices prerendering. Also includes some features.",
"scripts": {
"build:esm": "tsc --project ./tsconfig.json --module es2015 --outDir ./dist/esm -d",
"build:cjs": "tsc --project ./tsconfig.json --module commonjs --outDir ./dist/cjs",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"clean": "rimraf ./dist"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"typings": "./dist/esm/index.d.ts",
"devDependencies": {
"rimraf": "2.6.3",
"typescript": "3.4.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickMaev/domain-wait.git"
},
"author": "Nikolay Maev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NickMaev/domain-wait/issues"
},
"homepage": "https://github.com/NickMaev/domain-wait#readme"
}