-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
{
"name": "@devhelponline/create-node-mocks",
"version": "1.0.1",
"description": "Mock window | document | global objects in Node. Useful for Angular Universal projects or any JS applications doing SSR where these must be stubbed out to prevent errors.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "tslint -p tsconfig.json",
"clean": "rimraf ./dist",
"clean:install": "rimraf ./dist ./package-lock.json && npm i",
"build": "npm run clean && npm run tsc",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevHelp-Online/create-node-mocks.git"
},
"keywords": [
"node",
"nodejs",
"angular",
"angular-universal",
"universal"
],
"author": {
"name": "Mark Pieszak [DevHelp Online]",
"email": "[email protected]",
"url": "http://DevHelp.Online"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/DevHelp-Online/create-node-mocks/issues"
},
"homepage": "https://github.com/DevHelp-Online/create-node-mocks#readme",
"dependencies": {
"domino": "^2.1.0"
},
"private": false,
"devDependencies": {
"@types/node": "^10.11.4",
"tslint": "^5.11.0",
"typescript": "^3.1.1"
}
}