-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "@entwico/node-config",
"version": "1.0.0",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --no-cache",
"test:watch": "jest --watch --no-cache",
"release": "semantic-release"
},
"author": "smnbbrv",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.182",
"babel-jest": "^28.1.3",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"jest": "^28.1.3",
"reflect-metadata": "^0.1.13",
"semantic-release": "^19.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"lodash": "^4.17.21",
"yaml": "^2.1.1"
},
"files": [
"dist/src"
],
"publishConfig": {
"access": "public"
}
}