-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 810 Bytes
/
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
{
"name": "words-to-num",
"version": "0.1.0",
"description": "Converts English Numeric Words to Integer",
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"unpkg": "dist/index.umd.js",
"typings": "./index.d.ts",
"author": {
"name": "Hao Luo",
"email": "howlowck@gmail.com"
},
"keywords": [
"number",
"word",
"english",
"converter"
],
"scripts": {
"build": "microbundle --name=\"WtoN\"",
"dev": "microbundle watch",
"test": "jest"
},
"dependencies": {
},
"repository": {
"type": "git",
"url": "http://github.com/howlowck/words-to-num.git"
},
"homepage": "https://howlowck.github.com/words-to-num",
"license": "MIT",
"devDependencies": {
"jest": "^24.5.0",
"microbundle": "^0.11.0"
}
}