-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.87 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 2.87 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "quaire",
"description": "a framework-agnostic library to create user-flows, surveys, and questionnaires",
"version": "0.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"examples"
],
"keywords": [
"user-flow",
"user-flows",
"survey",
"surveys",
"questionnaire",
"questionnaires",
"decision tree"
],
"author": "Johannes Werner <johannes.werner@hey.com>",
"homepage": "https://github.com/devCrossNet/quaire#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/devCrossNet/quaire.git"
},
"scripts": {
"compile": "tsc",
"prebuild": "npm run clean",
"build": "npm run compile",
"clean": "rimraf ./dist ./coverage",
"dev": "tsc --watch",
"test": "jest --coverage",
"prettier": "prettier --config=.prettierrc --ignore-path=.prettierignore --write './src/**/*.{ts,js}' './examples/**/*.{ts,js}'",
"prettier:staged": "pretty-quick",
"lint": "eslint . --ext ts,vue --fix --cache",
"prerelease": "npm run build",
"release": "np",
"test:release": "npm test && npm run lint && npm run prettier",
"prepare": "husky install",
"postinstall": "husky install"
},
"np": {
"yarn": false,
"branch": "main",
"message": "chore: release v%s",
"testScript": "test:release"
},
"bugs": {
"url": "https://github.com/vuesion/packages/issues"
},
"dependencies": {
"lodash.get": "^4.4.2"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^27.0.1",
"@types/node": "^12.12.21",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"np": "^7.5.0",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"jest": {
"globals": {
"window": true,
"ts-jest": {
"tsconfig": "tsconfig.test.json"
}
},
"rootDir": ".",
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"coverageThreshold": {
"global": {
"branches": 88.31,
"functions": 100,
"lines": 99.2,
"statements": 99.24
}
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"coverageDirectory": "./coverage",
"coverageReporters": [
"html",
"text",
"lcov",
"json"
],
"preset": "ts-jest",
"testMatch": null
}
}