|
2 | 2 | "name": "@problem-solving/knapsack", |
3 | 3 | "description": "Knapsack problem algorithms for JavaScript", |
4 | 4 | "version": "0.0.0", |
| 5 | + "license": "AGPL-3.0", |
5 | 6 | "author": "make-github-pseudonymous-again", |
| 7 | + "homepage": "https://computational-problem-solving.github.io/knapsack", |
| 8 | + "repository": { |
| 9 | + "type": "git", |
| 10 | + "url": "https://github.com/computational-problem-solving/knapsack" |
| 11 | + }, |
| 12 | + "bugs": { |
| 13 | + "url": "https://github.com/computational-problem-solving/knapsack/issues" |
| 14 | + }, |
| 15 | + "keywords": [ |
| 16 | + "agpl", |
| 17 | + "algorithms", |
| 18 | + "complete", |
| 19 | + "computer", |
| 20 | + "dynamic", |
| 21 | + "in", |
| 22 | + "javascript", |
| 23 | + "knapsack", |
| 24 | + "meet", |
| 25 | + "middle", |
| 26 | + "np", |
| 27 | + "polynomial", |
| 28 | + "programming", |
| 29 | + "pseudo", |
| 30 | + "reductions", |
| 31 | + "science", |
| 32 | + "the" |
| 33 | + ], |
| 34 | + "sideEffects": false, |
| 35 | + "main": "lib/index.js", |
| 36 | + "files": [ |
| 37 | + "lib" |
| 38 | + ], |
| 39 | + "scripts": { |
| 40 | + "build": "babel --delete-dir-on-start --env-name production src -d lib", |
| 41 | + "cover": "nyc --reporter=lcov npm test", |
| 42 | + "dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast", |
| 43 | + "esdoc": "esdoc", |
| 44 | + "lint": "xo", |
| 45 | + "lint-config": "fixpack --dryRun", |
| 46 | + "lint-config-and-fix": "fixpack || fixpack", |
| 47 | + "prepare": "npm run build", |
| 48 | + "release": "np", |
| 49 | + "test": "ava", |
| 50 | + "travis": "npm run lint && npm run cover" |
| 51 | + }, |
| 52 | + "dependencies": { |
| 53 | + "@iterable-iterator/filter": "^1.0.1", |
| 54 | + "@iterable-iterator/map": "^1.0.1", |
| 55 | + "@iterable-iterator/range": "^2.1.0", |
| 56 | + "@iterable-iterator/reduce": "^1.0.1", |
| 57 | + "@iterable-iterator/sorted": "^1.0.0", |
| 58 | + "@total-order/key": "^1.0.0", |
| 59 | + "@total-order/primitive": "^1.0.1" |
| 60 | + }, |
| 61 | + "devDependencies": { |
| 62 | + "@babel/cli": "7.16.0", |
| 63 | + "@babel/core": "7.16.5", |
| 64 | + "@babel/preset-env": "7.16.5", |
| 65 | + "@babel/register": "7.16.5", |
| 66 | + "ava": "^3.15.0", |
| 67 | + "babel-plugin-transform-remove-console": "6.9.4", |
| 68 | + "babel-plugin-unassert": "3.2.0", |
| 69 | + "babel-preset-power-assert": "3.0.0", |
| 70 | + "coveralls": "3.1.1", |
| 71 | + "esdoc": "1.1.0", |
| 72 | + "esdoc-ecmascript-proposal-plugin": "1.0.0", |
| 73 | + "esdoc-inject-script-plugin": "1.0.0", |
| 74 | + "esdoc-inject-style-plugin": "1.0.0", |
| 75 | + "esdoc-standard-plugin": "1.0.0", |
| 76 | + "fixpack": "4.0.0", |
| 77 | + "np": "7.6.0", |
| 78 | + "nyc": "15.1.0", |
| 79 | + "power-assert": "1.6.1", |
| 80 | + "regenerator-runtime": "0.13.9", |
| 81 | + "xo": "0.47.0" |
| 82 | + }, |
6 | 83 | "ava": { |
7 | 84 | "files": [ |
8 | 85 | "test/src/**/*" |
|
73 | 150 | } |
74 | 151 | } |
75 | 152 | }, |
76 | | - "bugs": { |
77 | | - "url": "https://github.com/computational-problem-solving/knapsack/issues" |
78 | | - }, |
79 | | - "dependencies": { |
80 | | - "@iterable-iterator/filter": "^1.0.1", |
81 | | - "@iterable-iterator/map": "^1.0.1", |
82 | | - "@iterable-iterator/range": "^2.1.0", |
83 | | - "@iterable-iterator/reduce": "^1.0.1", |
84 | | - "@iterable-iterator/sorted": "^1.0.0", |
85 | | - "@total-order/key": "^1.0.0", |
86 | | - "@total-order/primitive": "^1.0.1" |
87 | | - }, |
88 | | - "devDependencies": { |
89 | | - "@babel/cli": "7.16.0", |
90 | | - "@babel/core": "7.16.5", |
91 | | - "@babel/preset-env": "7.16.5", |
92 | | - "@babel/register": "7.16.5", |
93 | | - "ava": "^3.15.0", |
94 | | - "babel-plugin-transform-remove-console": "6.9.4", |
95 | | - "babel-plugin-unassert": "3.2.0", |
96 | | - "babel-preset-power-assert": "3.0.0", |
97 | | - "coveralls": "3.1.1", |
98 | | - "esdoc": "1.1.0", |
99 | | - "esdoc-ecmascript-proposal-plugin": "1.0.0", |
100 | | - "esdoc-inject-script-plugin": "1.0.0", |
101 | | - "esdoc-inject-style-plugin": "1.0.0", |
102 | | - "esdoc-standard-plugin": "1.0.0", |
103 | | - "np": "7.6.0", |
104 | | - "nyc": "15.1.0", |
105 | | - "power-assert": "1.6.1", |
106 | | - "regenerator-runtime": "0.13.9", |
107 | | - "xo": "0.47.0", |
108 | | - "fixpack": "4.0.0" |
109 | | - }, |
110 | | - "files": [ |
111 | | - "lib" |
112 | | - ], |
113 | | - "homepage": "https://computational-problem-solving.github.io/knapsack", |
114 | | - "keywords": [ |
115 | | - "agpl", |
116 | | - "algorithms", |
117 | | - "complete", |
118 | | - "computer", |
119 | | - "dynamic", |
120 | | - "in", |
121 | | - "javascript", |
122 | | - "knapsack", |
123 | | - "meet", |
124 | | - "middle", |
125 | | - "np", |
126 | | - "polynomial", |
127 | | - "programming", |
128 | | - "pseudo", |
129 | | - "reductions", |
130 | | - "science", |
131 | | - "the" |
132 | | - ], |
133 | | - "license": "AGPL-3.0", |
134 | | - "main": "lib/index.js", |
135 | 153 | "prettier": { |
136 | 154 | "trailingComma": "all" |
137 | 155 | }, |
138 | | - "repository": { |
139 | | - "type": "git", |
140 | | - "url": "https://github.com/computational-problem-solving/knapsack" |
141 | | - }, |
142 | | - "scripts": { |
143 | | - "build": "babel --delete-dir-on-start --env-name production src -d lib", |
144 | | - "cover": "nyc --reporter=lcov npm test", |
145 | | - "dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast", |
146 | | - "esdoc": "esdoc", |
147 | | - "lint": "xo", |
148 | | - "prepare": "npm run build", |
149 | | - "release": "np", |
150 | | - "test": "ava", |
151 | | - "travis": "npm run lint && npm run cover", |
152 | | - "lint-config-and-fix": "fixpack || fixpack", |
153 | | - "lint-config": "fixpack --dryRun" |
154 | | - }, |
155 | | - "sideEffects": false, |
156 | 156 | "xo": { |
157 | 157 | "prettier": true, |
158 | 158 | "ignore": [ |
|
0 commit comments