-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.14 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
{
"name": "pyro-config",
"version": "0.1.0",
"description": "Pyro-Config is a simple, strongly opinionated fully typed config management library.",
"keywords": [
"config",
"node-config",
"typescript"
],
"scripts": {
"lint": "eslint --fix --ext .ts,.js src config && tsc --pretty",
"test": "jest",
"build": "tsc --project config && rollup -c config/rollup.config.js",
"dev": "tsc --project config && rollup -c config/rollup.config.js --watch",
"publish-patch": "git pull origin master && yarn build && yarn publish --patch && git push origin master --tags",
"publish-minor": "git pull origin master && yarn build && yarn publish --minor && git push origin master --tags",
"publish-major": "git pull origin master && yarn build && yarn publish --major && git push origin master --tags"
},
"lint-staged": {
"src/**/*.ts": [
"yarn lint",
"typedoc"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"main": "dist/pyro-config.cjs.js",
"module": "dist/pyro-config.esm.js",
"browser": "dist/pyro-config.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/treylon/pyro-config.git",
"author": "Lukas Kuehnert <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"prettier": "^2.0.1",
"rollup": "^2.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.26.0",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"typedoc": "^0.17.3",
"typescript": "^3.8.3"
},
"prettier": {
"printWidth": 100,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "avoid"
},
"dependencies": {
"change-case": "^4.1.1"
},
"sideEffects": false
}