|
2 | 2 | "name": "@combinatorics/set-partition", |
3 | 3 | "description": "Set partition algorithms for JavaScript", |
4 | 4 | "version": "0.0.1", |
| 5 | + "license": "AGPL-3.0", |
5 | 6 | "author": "make-github-pseudonymous-again", |
| 7 | + "homepage": "https://computational-combinatorics.github.io/set-partition", |
| 8 | + "repository": { |
| 9 | + "type": "git", |
| 10 | + "url": "https://github.com/computational-combinatorics/set-partition" |
| 11 | + }, |
| 12 | + "bugs": { |
| 13 | + "url": "https://github.com/computational-combinatorics/set-partition/issues" |
| 14 | + }, |
| 15 | + "keywords": [ |
| 16 | + "choose", |
| 17 | + "partition", |
| 18 | + "set" |
| 19 | + ], |
| 20 | + "sideEffects": false, |
| 21 | + "main": "lib/index.js", |
| 22 | + "files": [ |
| 23 | + "lib" |
| 24 | + ], |
| 25 | + "scripts": { |
| 26 | + "build": "babel --delete-dir-on-start --env-name production src -d lib", |
| 27 | + "cover": "nyc --reporter=lcov npm test", |
| 28 | + "dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast", |
| 29 | + "esdoc": "esdoc", |
| 30 | + "lint": "xo", |
| 31 | + "lint-config": "fixpack --dryRun", |
| 32 | + "lint-config-and-fix": "fixpack || fixpack", |
| 33 | + "prepare": "npm run build", |
| 34 | + "release": "np", |
| 35 | + "test": "ava", |
| 36 | + "travis": "npm run lint && npm run cover" |
| 37 | + }, |
| 38 | + "dependencies": { |
| 39 | + "@iterable-iterator/list": "^0.0.2", |
| 40 | + "@iterable-iterator/map": "^0.1.0", |
| 41 | + "@iterable-iterator/select": "^0.0.1" |
| 42 | + }, |
| 43 | + "devDependencies": { |
| 44 | + "@aureooms/js-red-black-tree": "9.0.0", |
| 45 | + "@babel/cli": "7.14.3", |
| 46 | + "@babel/core": "7.14.3", |
| 47 | + "@babel/preset-env": "7.14.2", |
| 48 | + "@babel/register": "7.13.16", |
| 49 | + "@iterable-iterator/iter": "^0.0.2", |
| 50 | + "@iterable-iterator/range": "^1.0.0", |
| 51 | + "@iterable-iterator/slice": "^0.0.1", |
| 52 | + "ava": "3.15.0", |
| 53 | + "babel-plugin-transform-remove-console": "6.9.4", |
| 54 | + "babel-plugin-unassert": "3.1.0", |
| 55 | + "babel-preset-power-assert": "3.0.0", |
| 56 | + "coveralls": "3.1.0", |
| 57 | + "esdoc": "1.1.0", |
| 58 | + "esdoc-ecmascript-proposal-plugin": "1.0.0", |
| 59 | + "esdoc-inject-script-plugin": "1.0.0", |
| 60 | + "esdoc-inject-style-plugin": "1.0.0", |
| 61 | + "esdoc-standard-plugin": "1.0.0", |
| 62 | + "fixpack": "4.0.0", |
| 63 | + "np": "7.5.0", |
| 64 | + "nyc": "15.1.0", |
| 65 | + "power-assert": "1.6.1", |
| 66 | + "regenerator-runtime": "0.13.7", |
| 67 | + "total-order": "3.0.1", |
| 68 | + "xo": "0.40.1" |
| 69 | + }, |
6 | 70 | "ava": { |
7 | 71 | "files": [ |
8 | 72 | "test/src/**/*" |
|
72 | 136 | } |
73 | 137 | } |
74 | 138 | }, |
75 | | - "bugs": { |
76 | | - "url": "https://github.com/computational-combinatorics/set-partition/issues" |
77 | | - }, |
78 | | - "dependencies": { |
79 | | - "@iterable-iterator/list": "^0.0.2", |
80 | | - "@iterable-iterator/map": "^0.1.0", |
81 | | - "@iterable-iterator/select": "^0.0.1" |
82 | | - }, |
83 | | - "devDependencies": { |
84 | | - "@aureooms/js-red-black-tree": "9.0.0", |
85 | | - "@babel/cli": "7.14.3", |
86 | | - "@babel/core": "7.14.3", |
87 | | - "@babel/preset-env": "7.14.2", |
88 | | - "@babel/register": "7.13.16", |
89 | | - "@iterable-iterator/iter": "^0.0.2", |
90 | | - "@iterable-iterator/range": "^1.0.0", |
91 | | - "@iterable-iterator/slice": "^0.0.1", |
92 | | - "ava": "3.15.0", |
93 | | - "babel-plugin-transform-remove-console": "6.9.4", |
94 | | - "babel-plugin-unassert": "3.1.0", |
95 | | - "babel-preset-power-assert": "3.0.0", |
96 | | - "coveralls": "3.1.0", |
97 | | - "esdoc": "1.1.0", |
98 | | - "esdoc-ecmascript-proposal-plugin": "1.0.0", |
99 | | - "esdoc-inject-script-plugin": "1.0.0", |
100 | | - "esdoc-inject-style-plugin": "1.0.0", |
101 | | - "esdoc-standard-plugin": "1.0.0", |
102 | | - "np": "7.5.0", |
103 | | - "nyc": "15.1.0", |
104 | | - "power-assert": "1.6.1", |
105 | | - "regenerator-runtime": "0.13.7", |
106 | | - "total-order": "3.0.1", |
107 | | - "xo": "0.40.1", |
108 | | - "fixpack": "4.0.0" |
109 | | - }, |
110 | | - "files": [ |
111 | | - "lib" |
112 | | - ], |
113 | | - "homepage": "https://computational-combinatorics.github.io/set-partition", |
114 | | - "keywords": [ |
115 | | - "choose", |
116 | | - "partition", |
117 | | - "set" |
118 | | - ], |
119 | | - "license": "AGPL-3.0", |
120 | | - "main": "lib/index.js", |
121 | 139 | "prettier": { |
122 | 140 | "trailingComma": "all" |
123 | 141 | }, |
124 | | - "repository": { |
125 | | - "type": "git", |
126 | | - "url": "https://github.com/computational-combinatorics/set-partition" |
127 | | - }, |
128 | | - "scripts": { |
129 | | - "build": "babel --delete-dir-on-start --env-name production src -d lib", |
130 | | - "cover": "nyc --reporter=lcov npm test", |
131 | | - "dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast", |
132 | | - "esdoc": "esdoc", |
133 | | - "lint": "xo", |
134 | | - "prepare": "npm run build", |
135 | | - "release": "np", |
136 | | - "test": "ava", |
137 | | - "travis": "npm run lint && npm run cover", |
138 | | - "lint-config-and-fix": "fixpack || fixpack", |
139 | | - "lint-config": "fixpack --dryRun" |
140 | | - }, |
141 | | - "sideEffects": false, |
142 | 142 | "xo": { |
143 | 143 | "prettier": true, |
144 | 144 | "ignores": [ |
|
0 commit comments