-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3.3 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@sebgroup/frontend-tools",
"version": "0.0.0-semantically-released",
"description": "A set of frontend tools",
"author": "sebgroup",
"scripts": {
"clean:dist": "rimraf dist/*",
"clean:coverage": "rimraf coverage/*",
"prebuild": "npm run clean:dist",
"build": "rollup -c --environment BUILD:production",
"postbuild": "node scripts/post-build.js",
"gen:indexes": "node scripts/indexer.js",
"copy": "cp package.json dist/ && cp README.md dist/",
"lint": "tslint -p tsconfig.json",
"pretest": "npm run clean:coverage",
"test": "cross-env NODE_ICU_DATA=node_modules/full-icu jest --forceExit --detectOpenHandles",
"commit": "git-cz",
"semantic-release": "semantic-release",
"sanitize": "package-lock-sanitizer && git add package-lock.json"
},
"main": "index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebgroup/frontend-tools.git"
},
"bugs": {
"url": "https://github.com/sebgroup/frontend-tools/issues"
},
"homepage": "https://github.com/sebgroup/frontend-tools",
"keywords": [
"frontend",
"typescript",
"utilities"
],
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "^9.1.2",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-typescript": "^8.2.0",
"@semantic-release/changelog": "^5.0.1",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.1",
"as-table": "^1.0.55",
"chalk": "^4.1.0",
"commitizen": "^4.0.3",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.0.2",
"dargs": "^7.0.0",
"fibers": "^5.0.0",
"full-icu": "^1.3.1",
"husky": "^4.2.5",
"jest": "^26.6.3",
"jsdom": "^16.0.0",
"jsdom-global": "^3.0.2",
"openapi-types": "^1.3.5",
"package-lock-sanitizer": "^1.0.1",
"raf": "^3.4.1",
"rollup": "^2.38.5",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-summary": "^1.0.6",
"rollup-plugin-terser": "^7.0.0",
"semantic-release": "^17.0.2",
"ts-jest": "^26.4.4",
"tslib": "^2.0.0",
"tslint": "^6.0.0",
"typescript": "^4.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run sanitize && npm run lint",
"commit-msg": "commitlint --edit"
}
},
"release": {
"pkgRoot": "dist",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
}
}