Skip to content

Commit 6bdb31f

Browse files
🤖 chore: Lint configuration files.
These changes were automatically generated by a transform whose code can be found at: - https://github.com/aureooms/rejuvenate/blob/057c4df07dfcd3ed83201b062803b05a252bf67f/src/transforms/package.json:initial-lint.js Please contact the author of the transform if you believe there was an error.
1 parent a4b59b0 commit 6bdb31f

File tree

1 file changed

+60
-60
lines changed

1 file changed

+60
-60
lines changed

package.json

+60-60
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,66 @@
22
"name": "@aureooms/js-mincut",
33
"description": "Minimum cut problem for JavaScript",
44
"version": "0.0.1",
5+
"license": "AGPL-3.0",
56
"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+
},
665
"ava": {
766
"files": [
867
"test/src/**/*"
@@ -71,64 +130,5 @@
71130
"sourceMaps": "inline"
72131
}
73132
}
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+
}
134134
}

0 commit comments

Comments
 (0)