-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·59 lines (59 loc) · 1.41 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "js-simple-validations",
"private": false,
"version": "0.2.9",
"description": "Form validation tool",
"repository": {
"type": "git",
"url": "https://github.com/tarponjargon/js-simple-validations.git"
},
"main": "index.js",
"scripts": {
"test": "jest",
"dist": "webpack --mode production",
"dev": "webpack --mode development --output ./build/js-simple-validations.js",
"lint:js": "eslint src/ webpack.*.js --cache"
},
"keywords": [
"javascript",
"form validation",
"data attribute"
],
"author": "Rory O'Connor",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^4.6.0",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.2",
"jest": "^23.6.0",
"puppeteer": "^1.14.0",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-config-utils": "^2.3.1"
},
"dependencies": {
"nodelist-foreach-polyfill": "^1.2.0",
"promise-polyfill": "8.1.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"testPathIgnorePatterns": [
"/node_modules/",
"shared.js$"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
}
}