-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.5 KB
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
{
"name": "my-numbers",
"version": "1.1.3",
"description": "Javascript library for formatting numbers. Using your own formats.",
"main": "dist/my-numbers.js",
"scripts": {
"test:watch": "instant-mocha -w --webpack-config ./build/webpack-test.config.js \"test/*.js\"",
"test": "instant-mocha --webpack-config ./build/webpack-test.config.js \"test/*.js\"",
"build": "webpack-cli --progress --profile --color --config ./build/webpack-prod.config.js"
},
"keywords": [
"number",
"format",
"money",
"percentage"
],
"author": {
"name": "David Casado Martínez"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/davidnotplay/my-numbers.git"
},
"homepage": "https://github.com/davidnotplay/my-numbers",
"bugs": {
"url": "https://github.com/davidnotplay/my-numbers/issues"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"eslint": "^4.3.0",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"expect": "^1.20.2",
"instant-mocha": "^1.3.0",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0"
}
}