-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.85 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "valinode",
"version": "1.0.19",
"description": "A package for javascript form validation.",
"main": "./src/index.js",
"scripts": {
"test": "jest",
"dev": "cross-env NODE_ENV=development parallel-webpack --config=webpack.config.js --watch",
"build": "cross-env NODE_ENV=production parallel-webpack --config=webpack.config.js --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whthT/valinode.git"
},
"keywords": [
"javascript form validation"
],
"author": {
"name": "whtht",
"email": "hackedtim61@gmail.com",
"url": "https://whtht.github.io/valinode/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/whthT/valinode/issues"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"cross-env": "^5.2.1",
"jest": "^24.9.0",
"jest-css-modules": "^2.1.0",
"parallel-webpack": "^2.4.0",
"webpack": "^4.39.3"
},
"dependencies": {
"is-nan": "^1.2.1"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.(css|scss|less)$": "jest-css-modules"
},
"globals": {
"NODE_ENV": "test"
},
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"./src"
]
},
"babel": {
"presets": [
"@babel/preset-env"
],
"env": {
"production": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}
}
}