-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 1.14 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
{
"name": "useful-regex",
"version": "0.1.0",
"description": "常用正则表达式大全",
"main": "dist/useful-regex.min.js",
"scripts": {
"test": "export NODE_ENV=test && mocha --require babel-core/register",
"dev": "export NODE_ENV=development && rollup -c rollup.conf.js --watch",
"build": "export NODE_ENV=production && rollup -c rollup.conf.js && uglifyjs -c -m -o dist/useful-regex.min.js -- dist/useful-regex.js"
},
"author": {
"name": "yinxin630",
"email": "[email protected]"
},
"repository": "https://github.com/yinxin630/useful-regex",
"keywords": [
"regex",
"正则表达式",
"中国"
],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"rollup": "^0.51.5",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"uglify-js": "^3.1.9"
},
"dependencies": {}
}