-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.77 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
{
"name": "confiction",
"author": "Leonardo Melo",
"version": "0.0.0-development",
"license": "MIT",
"module": "dist/confiction.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/leomeloxp/confiction"
},
"bugs": {
"url": "https://github.com/leomeloxp/confiction/issues"
},
"files": [
"dist"
],
"keywords": [
"config",
"configuration-management",
"configuration",
"javascript-library",
"javascript",
"typescript-library",
"typescript"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"docs:markdown": "typedoc",
"docs:html": "typedoc --plugin none --out public",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"semantic-release": "semantic-release"
},
"peerDependencies": {},
"dependencies": {
"universal-cookie": "4.0.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^24.9.1",
"@types/universal-cookie": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^5.0.8",
"pinst": "^2.1.4",
"prettier": "^1.19.1",
"semantic-release": "^17.3.7",
"semantic-release-npm-github-publish": "^1.4.0",
"tsdx": "^0.14.1",
"tslib": "^1.10.0",
"typedoc": "^0.16.9",
"typedoc-plugin-markdown": "^2.2.16",
"typescript": "^3.7.5"
}
}