-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.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
{
"name": "@jovotech/filebuilder",
"description": "Jovo FileBuilder",
"version": "0.0.3",
"author": "jovotech",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"scripts": {
"start": "node dist/index.js",
"test": "jest",
"tsc": "tsc",
"eslint": "eslint src test --ext .ts --fix",
"setup:dev": "npm install && npm run tsc && npm link",
"setup:prod": "npm install && npm run tsc && npm run test && npm run eslint"
},
"dependencies": {
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/jest": "^26.0.18",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.set": "^4.3.6",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"files": [
"dist"
]
}