-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
64 lines (64 loc) · 1.34 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
{
"name": "nzh",
"version": "1.0.14",
"description": "数字转中文,大写,金额",
"homepage": "http://cnwhy.github.io/nzh",
"main": "nzh.js",
"types": "nzh.d.ts",
"exports": {
".": {
"types": "./nzh.d.ts",
"import": "./nzh.js",
"require": "./nzh.js"
},
"./cn": {
"types": "./nzh.d.ts",
"import": "./cn.js",
"require": "./cn.js"
},
"./hk": {
"types": "./nzh.d.ts",
"import": "./hk.js",
"require": "./hk.js"
}
},
"files": [
"src/*",
"dist/*",
"nzh.js",
"cn.js",
"hk.js",
"nzh.d.ts"
],
"scripts": {
"test": "./node_modules/.bin/_mocha test/test_mocha.js",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "https://github.com/cnwhy/nzh.git"
},
"keywords": [
"数字转中文",
"数字转金额",
"中文数字转阿拉伯数字",
"中文数字"
],
"author": {
"name": "cnwhy",
"email": "[email protected]"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-browserify": "^0.5.1",
"gulp-header": "^1.8.8",
"gulp-mocha": "^3.0.1",
"gulp-mocha-phantomjs": "^0.12.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.0.1",
"rollup": "^0.63.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0"
},
"license": "BSD-2-Clause"
}