-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
77 lines (77 loc) · 1.79 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "number-format.js",
"nick": "javascript-number-formatter",
"description": "Lightweight & Fast JavaScript Number Formatter",
"version": "2.0.9",
"homepage": "http://mottie.github.com/javascript-number-formatter/",
"main": "lib/format.min.js",
"demo": "https://github.com/Mottie/javascript-number-formatter/index.html",
"repository": {
"type": "git",
"url": "git://github.com/Mottie/javascript-number-formatter.git"
},
"author": {
"name": "KPL",
"url": "https://code.google.com/u/100789773228459308870/"
},
"maintainers": [
{
"name": "Rob Garrison",
"url": "https://github.com/Mottie",
"email": "wowmotty@gmail.com"
}
],
"license": "MIT",
"bugs": "https://github.com/Mottie/javascript-number-formatter/issues",
"docs": "http://mottie.github.com/javascript-number-formatter/index.html",
"keywords": [
"number",
"format",
"formatter",
"currency"
],
"files": [
"lib/",
"index.d.ts"
],
"xo": {
"space": false,
"ignore": [
"rollup.config.js",
"lib"
],
"envs": [
"node"
],
"rules": {
"no-sparse-arrays": 0,
"quotes": [
"error",
"double"
],
"operator-linebreak": 0
}
},
"engines": {
"node": ">=8"
},
"scripts": {
"build": "rollup -c",
"test": "xo && ava",
"updater": "npx updates -cu && npm install"
},
"typings": "./index.d.ts",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"ava": "*",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-cjs-es": "^0.7.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^4.0.3",
"updates": "^6.2.1",
"xo": "*"
}
}