-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
37
38
39
40
41
42
{
"name": "chinese-numerals",
"version": "0.1.0",
"description": "convert arabic number to chinese number",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts",
"test": "tsc -p test/tsconfig.json && mocha build/test/index.test.js"
},
"author": "lostpigz",
"repository": {
"type": "git",
"url": "git+https://github.com/Lostpig/chinese-numerals.git"
},
"keywords": [
"chinese number"
],
"bugs": {
"url": "https://github.com/Lostpig/chinese-numerals/issues"
},
"homepage": "https://github.com/Lostpig/chinese-numerals#readme",
"license": "MIT",
"devDependencies": {
"@types/assert": "^1.4.0",
"@types/mocha": "^5.2.5",
"assert": "^1.4.1",
"mocha": "^5.2.0",
"rollup": "^0.67.4",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.18.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.1.6"
}
}