-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.78 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
56
57
58
59
{
"name": "vormula",
"version": "0.4.1",
"description": "A simple form model library for Vue.js applications.",
"author": "Equalogic Ltd",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/equalogic/vormula.git"
},
"scripts": {
"prebuild": "rimraf dist && npm run barrels:generate",
"build": "tsc -p tsconfig.build.json",
"postbuild": "cp package.json README.md dist/",
"format": "prettier --write .",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --ext .ts --ignore-path .gitignore . --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --runInBand --testLocationInResults",
"version": "npm run build",
"postversion": "npm run postbuild",
"release": "np --contents dist/",
"barrels:generate": "barrelsby --config barrelsby.json"
},
"dependencies": {
"lodash.isplainobject": "^4.0.6",
"lodash.mapvalues": "^4.6.0"
},
"optionalDependencies": {},
"peerDependencies": {},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/lodash.isplainobject": "4.0.9",
"@types/lodash.mapvalues": "4.6.9",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"barrelsby": "2.8.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.6.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"jest": "29.7.0",
"jest-github-actions-reporter": "1.0.3",
"mkdirp": "3.0.1",
"np": "8.0.4",
"prettier": "2.8.8",
"rimraf": "5.0.5",
"ts-jest": "29.1.2",
"typescript": "5.3.3"
},
"main": "index.js",
"types": "index.d.ts"
}