|
2 | 2 | "name": "@aureooms/js-maximum-matching", |
3 | 3 | "description": "Maximum matching algorithms for JavaScript", |
4 | 4 | "version": "1.0.8", |
| 5 | + "license": "AGPL-3.0", |
5 | 6 | "author": "aureooms", |
| 7 | + "homepage": "https://aureooms.github.io/js-maximum-matching", |
| 8 | + "repository": { |
| 9 | + "type": "git", |
| 10 | + "url": "https://github.com/aureooms/js-maximum-matching" |
| 11 | + }, |
| 12 | + "bugs": { |
| 13 | + "url": "https://github.com/aureooms/js-maximum-matching/issues" |
| 14 | + }, |
| 15 | + "keywords": [ |
| 16 | + "algorithm", |
| 17 | + "graph", |
| 18 | + "javascript", |
| 19 | + "matching", |
| 20 | + "maximum" |
| 21 | + ], |
| 22 | + "sideEffects": false, |
| 23 | + "main": "lib/index.js", |
| 24 | + "files": [ |
| 25 | + "lib" |
| 26 | + ], |
| 27 | + "scripts": { |
| 28 | + "build": "babel --delete-dir-on-start --env-name production src -d lib", |
| 29 | + "cover": "nyc --reporter=lcov npm test", |
| 30 | + "dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast", |
| 31 | + "esdoc": "esdoc", |
| 32 | + "lint": "xo", |
| 33 | + "lint-config": "fixpack --dryRun", |
| 34 | + "lint-config-and-fix": "fixpack || fixpack", |
| 35 | + "prepare": "npm run build", |
| 36 | + "release": "np", |
| 37 | + "test": "ava", |
| 38 | + "travis": "npm run lint && npm run cover" |
| 39 | + }, |
| 40 | + "dependencies": {}, |
| 41 | + "devDependencies": { |
| 42 | + "@aureooms/js-itertools": "5.0.1", |
| 43 | + "@babel/cli": "7.13.10", |
| 44 | + "@babel/core": "7.13.10", |
| 45 | + "@babel/preset-env": "7.13.10", |
| 46 | + "@babel/register": "7.13.8", |
| 47 | + "ava": "3.15.0", |
| 48 | + "babel-plugin-transform-remove-console": "6.9.4", |
| 49 | + "babel-plugin-unassert": "3.0.1", |
| 50 | + "babel-preset-power-assert": "3.0.0", |
| 51 | + "coveralls": "3.1.0", |
| 52 | + "esdoc": "1.1.0", |
| 53 | + "esdoc-inject-script-plugin": "1.0.0", |
| 54 | + "esdoc-inject-style-plugin": "1.0.0", |
| 55 | + "esdoc-standard-plugin": "1.0.0", |
| 56 | + "fixpack": "4.0.0", |
| 57 | + "np": "7.4.0", |
| 58 | + "nyc": "15.1.0", |
| 59 | + "power-assert": "1.6.1", |
| 60 | + "regenerator-runtime": "0.13.7", |
| 61 | + "xo": "0.36.1" |
| 62 | + }, |
6 | 63 | "ava": { |
7 | 64 | "files": [ |
8 | 65 | "test/src/**/*" |
|
72 | 129 | } |
73 | 130 | } |
74 | 131 | }, |
75 | | - "bugs": { |
76 | | - "url": "https://github.com/aureooms/js-maximum-matching/issues" |
77 | | - }, |
78 | | - "dependencies": {}, |
79 | | - "devDependencies": { |
80 | | - "@aureooms/js-itertools": "5.0.1", |
81 | | - "@babel/cli": "7.13.10", |
82 | | - "@babel/core": "7.13.10", |
83 | | - "@babel/preset-env": "7.13.10", |
84 | | - "@babel/register": "7.13.8", |
85 | | - "ava": "3.15.0", |
86 | | - "babel-plugin-transform-remove-console": "6.9.4", |
87 | | - "babel-plugin-unassert": "3.0.1", |
88 | | - "babel-preset-power-assert": "3.0.0", |
89 | | - "coveralls": "3.1.0", |
90 | | - "esdoc": "1.1.0", |
91 | | - "esdoc-inject-script-plugin": "1.0.0", |
92 | | - "esdoc-inject-style-plugin": "1.0.0", |
93 | | - "esdoc-standard-plugin": "1.0.0", |
94 | | - "np": "7.4.0", |
95 | | - "nyc": "15.1.0", |
96 | | - "power-assert": "1.6.1", |
97 | | - "regenerator-runtime": "0.13.7", |
98 | | - "xo": "0.36.1", |
99 | | - "fixpack": "4.0.0" |
100 | | - }, |
101 | | - "files": [ |
102 | | - "lib" |
103 | | - ], |
104 | | - "homepage": "https://aureooms.github.io/js-maximum-matching", |
105 | | - "keywords": [ |
106 | | - "algorithm", |
107 | | - "graph", |
108 | | - "javascript", |
109 | | - "matching", |
110 | | - "maximum" |
111 | | - ], |
112 | | - "license": "AGPL-3.0", |
113 | | - "main": "lib/index.js", |
114 | | - "repository": { |
115 | | - "type": "git", |
116 | | - "url": "https://github.com/aureooms/js-maximum-matching" |
117 | | - }, |
118 | | - "scripts": { |
119 | | - "build": "babel --delete-dir-on-start --env-name production src -d lib", |
120 | | - "cover": "nyc --reporter=lcov npm test", |
121 | | - "dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast", |
122 | | - "esdoc": "esdoc", |
123 | | - "lint": "xo", |
124 | | - "prepare": "npm run build", |
125 | | - "release": "np", |
126 | | - "test": "ava", |
127 | | - "travis": "npm run lint && npm run cover", |
128 | | - "lint-config-and-fix": "fixpack || fixpack", |
129 | | - "lint-config": "fixpack --dryRun" |
130 | | - }, |
131 | | - "sideEffects": false, |
132 | 132 | "xo": { |
133 | 133 | "prettier": true, |
134 | 134 | "rules": { |
|
0 commit comments