|
2 | 2 | "name": "@aureooms/js-number",
|
3 | 3 | "description": "Primitive number type arithmetic for JavaScript",
|
4 | 4 | "version": "3.1.0",
|
| 5 | + "license": "AGPL-3.0", |
5 | 6 | "author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
|
6 |
| - "ava": { |
7 |
| - "require": [ |
8 |
| - "@babel/polyfill", |
9 |
| - "@babel/register" |
10 |
| - ], |
11 |
| - "files": [ |
12 |
| - "test/src/**/*" |
13 |
| - ], |
14 |
| - "timeout": "1m", |
15 |
| - "concurrency": 8 |
16 |
| - }, |
17 |
| - "babel": { |
18 |
| - "presets": [ |
19 |
| - "@babel/preset-env" |
20 |
| - ], |
21 |
| - "env": { |
22 |
| - "development": { |
23 |
| - "sourceMaps": "inline" |
24 |
| - } |
25 |
| - } |
| 7 | + "homepage": "https://aureooms.github.io/js-number", |
| 8 | + "repository": { |
| 9 | + "url": "https://github.com/aureooms/js-number", |
| 10 | + "type": "git" |
26 | 11 | },
|
27 | 12 | "bugs": {
|
28 | 13 | "url": "https://github.com/aureooms/js-number/issues"
|
29 | 14 | },
|
| 15 | + "keywords": [ |
| 16 | + "arithmetic", |
| 17 | + "javascript", |
| 18 | + "js", |
| 19 | + "number", |
| 20 | + "primitive" |
| 21 | + ], |
| 22 | + "main": "lib/index.js", |
| 23 | + "files": [ |
| 24 | + "lib" |
| 25 | + ], |
| 26 | + "scripts": { |
| 27 | + "build": "rm -rf lib && babel src -d lib", |
| 28 | + "cover": "nyc --reporter=lcov npm test", |
| 29 | + "esdoc": "esdoc", |
| 30 | + "lint-config": "fixpack --dryRun", |
| 31 | + "lint-config-and-fix": "fixpack || fixpack", |
| 32 | + "prepare": "npm run build", |
| 33 | + "release": "np", |
| 34 | + "test": "ava" |
| 35 | + }, |
30 | 36 | "dependencies": {},
|
31 | 37 | "devDependencies": {
|
32 | 38 | "@aureooms/js-algorithms": "^3.0.7",
|
|
43 | 49 | "esdoc-inject-script-plugin": "1.0.0",
|
44 | 50 | "esdoc-inject-style-plugin": "1.0.0",
|
45 | 51 | "esdoc-standard-plugin": "1.0.0",
|
| 52 | + "fixpack": "4.0.0", |
46 | 53 | "np": "7.4.0",
|
47 |
| - "nyc": "^15.1.0", |
48 |
| - "fixpack": "4.0.0" |
| 54 | + "nyc": "^15.1.0" |
49 | 55 | },
|
50 |
| - "files": [ |
51 |
| - "lib" |
52 |
| - ], |
53 |
| - "homepage": "https://aureooms.github.io/js-number", |
54 |
| - "keywords": [ |
55 |
| - "arithmetic", |
56 |
| - "javascript", |
57 |
| - "js", |
58 |
| - "number", |
59 |
| - "primitive" |
60 |
| - ], |
61 |
| - "license": "AGPL-3.0", |
62 |
| - "main": "lib/index.js", |
63 |
| - "repository": { |
64 |
| - "url": "https://github.com/aureooms/js-number", |
65 |
| - "type": "git" |
| 56 | + "ava": { |
| 57 | + "require": [ |
| 58 | + "@babel/polyfill", |
| 59 | + "@babel/register" |
| 60 | + ], |
| 61 | + "files": [ |
| 62 | + "test/src/**/*" |
| 63 | + ], |
| 64 | + "timeout": "1m", |
| 65 | + "concurrency": 8 |
66 | 66 | },
|
67 |
| - "scripts": { |
68 |
| - "build": "rm -rf lib && babel src -d lib", |
69 |
| - "cover": "nyc --reporter=lcov npm test", |
70 |
| - "esdoc": "esdoc", |
71 |
| - "prepare": "npm run build", |
72 |
| - "release": "np", |
73 |
| - "test": "ava", |
74 |
| - "lint-config-and-fix": "fixpack || fixpack", |
75 |
| - "lint-config": "fixpack --dryRun" |
| 67 | + "babel": { |
| 68 | + "presets": [ |
| 69 | + "@babel/preset-env" |
| 70 | + ], |
| 71 | + "env": { |
| 72 | + "development": { |
| 73 | + "sourceMaps": "inline" |
| 74 | + } |
| 75 | + } |
76 | 76 | }
|
77 | 77 | }
|
0 commit comments