forked from nolimits4web/ssr-window
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.93 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
49
50
51
52
53
54
55
56
57
{
"name": "ssr-window-src",
"version": "4.0.2",
"description": "Better handling for window object in SSR environment",
"scripts": {
"build:dev": "tsc --declarationDir build/types --emitDeclarationOnly --declaration true && NODE_ENV=development node ./scripts/build",
"build:prod": "tsc --declarationDir package/types --emitDeclarationOnly --declaration true && NODE_ENV=production node ./scripts/build",
"serve": "serve",
"lint": "eslint --ext .js,.ts,.tsx .",
"prettier": "prettier \"**/*.+(js|json|scss)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"test": "node ./test/test.mjs",
"validate": "npm-run-all --parallel test check-format lint",
"release": "npm run validate && node ./scripts/release",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -u -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nolimits4web/ssr-window.git"
},
"keywords": [
"ssr",
"window",
"document"
],
"author": "Vladimir Kharlampidi",
"license": "MIT",
"bugs": {
"url": "https://github.com/nolimits4web/ssr-window/issues"
},
"homepage": "https://github.com/nolimits4web/ssr-window",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.2",
"@rollup/plugin-typescript": "^8.2.3",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"domino": "^2.1.6",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"exec-sh": "^0.3.4",
"husky": "^5.0.9",
"inquirer": "^7.3.3",
"jsdom": "^16.4.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rollup": "^2.53.3",
"serve": "^11.3.2",
"terser": "^5.7.1",
"typescript": "^4.3.5"
},
"dependencies": {}
}