-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "h-regular",
"version": "1.0.6",
"description": "在日常js开发中积累的112个正则表达式,适用于浏览器和Node环境",
"main": "dist/h-regular.js",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@types/node": "^12.12.17",
"chai": "^4.2.0",
"jest": "^24.8.0",
"mocha": "^6.1.4",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "rollup -c ./build/rollup.dev.config.js -w",
"build": "rollup -c ./build/rollup.bundle.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/haizlin/h-regular"
},
"keywords": [
"regular",
"RegExp",
"Pattern",
"Match",
"正则",
"正则表达式",
"正则校验",
"身份证号正则",
"密码正则",
"邮箱正则"
],
"author": "浪子神剑",
"license": "MIT"
}