-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.62 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.62 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
{
"name": "dynamic-form",
"version": "1.0.0",
"description": "Dynamic form element creation",
"main": "index.js",
"scripts": {
"test": "jest --config=jestconfig.json",
"server": "http-server . -p 8000",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gouravmore/dynamic-form.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gouravmore/dynamic-form/issues"
},
"homepage": "https://github.com/gouravmore/dynamic-form#readme",
"devDependencies": {
"css-loader": "^3.6.0",
"http-server": "^0.12.3",
"jest": "^26.1.0",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"engines": {
"node": "8"
},
"jest": {
"browser": false,
"globals": {
"cordova": true
},
"setupFiles": [
"<rootDir>/src/__tests__/setup.js"
],
"rootDir": "./",
"roots": [
"<rootDir>/src/app",
"<rootDir>/src/config",
"<rootDir>/src/directives",
"<rootDir>/src/guards",
"<rootDir>/src/pipes",
"<rootDir>/src/services",
"<rootDir>/src/util"
],
"moduleDirectories": [
"node_modules"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"testMatch": [
"**/?(*.)(spec).ts"
],
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"transform": {
"^.+\\.(ts|js)$": "babel-jest"
},
"coverageReporters": [
"text"
],
"moduleNameMapper": {
"^@app/(.*)$": "<rootDir>/src/$1"
},
"transformIgnorePatterns": []
}
}