-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 KB
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
{
"name": "@release-kit/client-dynamic-env",
"version": "0.0.0-set-by-ci",
"description": "Dynamically insert environment variables into bundled file and extract them in runtime",
"author": "Evgeny Zakharov",
"main": "dist/index.js",
"exports": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/*"
],
"repository": "git@github.com:release-kit/client-dynamic-env.git",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn lint --quiet && rollup -c",
"dev": "yarn build --watch",
"test": "jest",
"test:watch": "yarn test --watchAll",
"lint": "eslint --ext .ts,.tsx src",
"lint:fix": "yarn lint --fix",
"prepare": "is-ci || husky install",
"postinstall": "yarn prepare",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^27.5.1",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.3",
"cz-customizable": "^6.3.0",
"esbuild": "^0.14.39",
"eslint": "^8.16.0",
"eslint-kit": "^5.2.1",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^28.1.0",
"jest-serializer-path": "^0.1.15",
"lint-staged": "^13.0.0",
"pinst": "^3.0.0",
"rollup": "^2.73.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
}
}