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