-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.04 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
{
"name": "cuki",
"version": "2.0.3",
"description": "Cookie Data Library",
"types": "./dist/cuki.d.ts",
"main": "src/cuki.ts",
"module": "dist/cuki.js",
"browser": "dist/cuki.min.js",
"scripts": {
"build": "webpack -- --color",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/shmolf/cuki.git"
},
"keywords": [
"cookie",
"🍪",
"cuki"
],
"author": "Nicholas Browning",
"license": "MIT",
"bugs": {
"url": "https://github.com/shmolf/cuki/issues"
},
"homepage": "https://github.com/shmolf/cuki#readme",
"browserslist": [
"last 1 version",
"> 1%",
"IE 11"
],
"files": [
"README.md",
"package.json",
"LICENSE",
"dist/**/*",
"docs/**/*",
"src/**/*"
],
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"husky": "^6.0.0",
"pinst": "^2.1.6",
"semantic-release": "^17.4.3",
"terser-webpack-plugin": "^5.1.2",
"ts-loader": "^9.2.2",
"typedoc": "^0.20.36",
"typedoc-plugin-markdown": "^3.8.1",
"typescript": "^4.2.4",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}