-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
53 lines (53 loc) · 1.69 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
{
"name": "number-to-words",
"description": "Contains some util methods for converting numbers into words, ordinal words and ordinal numbers.",
"version": "1.2.4",
"main": "./src",
"browser": "./numberToWords.min.js",
"author": "Martin Eneqvist (https://github.com/marlun78)",
"contributors": [
"Aleksey Pilyugin (https://github.com/pilyugin)",
"Jeremiah Hall (https://github.com/jeremiahrhall)",
"Adriano Melo (https://github.com/adrianomelo)",
"dmrzn (https://github.com/dmrzn)"
],
"devDependencies": {
"eslint": "5.3.0",
"fancy-log": "1.3.2",
"gulp": "4.0.0",
"gulp-concat": "2.6.1",
"gulp-rename": "1.4.0",
"gulp-replace": "1.0.0",
"gulp-uglify": "3.0.1",
"gulp-wrap": "0.14.0",
"http-server": "0.11.1",
"jasmine": "3.2.0",
"phantomjs-prebuilt": "2.1.16",
"uglify-save-license": "0.4.1"
},
"scripts": {
"build": "gulp build",
"lint": "node node_modules/eslint/bin/eslint.js .",
"test": "npm run lint && npm run test:node",
"test:node": "jasmine",
"test:phantom": "phantomjs ./spec/phantom/run-jasmine3.js 'http://localhost:3456/spec/'",
"test:server": "http-server ./ -p 3456 -c-1"
},
"repository": {
"type": "git",
"url": "https://github.com/marlun78/number-to-words"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/marlun78/number-to-words/issues"
},
"homepage": "https://github.com/marlun78/number-to-words",
"keywords": [
"converter",
"number",
"ordinal",
"string",
"tool",
"word"
]
}