Skip to content

Commit 76900df

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/eb1b209cd7aa675a642d48b2a788c2c6112779f7/src/transforms/package.json:initial-lint.js Please contact the author of the transform if you believe there was an error.
1 parent d6e2e3a commit 76900df

File tree

1 file changed

+52
-52
lines changed

1 file changed

+52
-52
lines changed

package.json

+52-52
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,42 @@
22
"name": "@aureooms/js-sat",
33
"description": "Boolean formula satisfiability algorithms for JavaScript",
44
"version": "2.0.2",
5+
"license": "AGPL-3.0",
56
"author": "Aurélien Ooms <[email protected]>",
6-
"ava": {
7-
"require": [
8-
"@babel/polyfill",
9-
"@babel/register"
10-
],
11-
"files": [
12-
"test/src/**/*"
13-
],
14-
"timeout": "1m",
15-
"concurrency": 8
16-
},
17-
"babel": {
18-
"presets": [
19-
"@babel/preset-env"
20-
],
21-
"env": {
22-
"development": {
23-
"sourceMaps": "inline"
24-
}
25-
}
7+
"homepage": "https://aureooms.github.io/js-sat",
8+
"repository": {
9+
"url": "https://github.com/aureooms/js-sat",
10+
"type": "git"
2611
},
2712
"bugs": {
2813
"url": "https://github.com/aureooms/js-sat/issues"
2914
},
15+
"keywords": [
16+
"NP",
17+
"SAT",
18+
"algorithms",
19+
"boolean formula",
20+
"complete",
21+
"complexity",
22+
"computer science",
23+
"javascript",
24+
"js",
25+
"satisfiability"
26+
],
27+
"main": "lib/index.js",
28+
"files": [
29+
"lib"
30+
],
31+
"scripts": {
32+
"build": "rm -rf lib && babel src -d lib",
33+
"cover": "nyc --reporter=lcov npm test",
34+
"esdoc": "esdoc",
35+
"lint-config": "fixpack --dryRun",
36+
"lint-config-and-fix": "fixpack || fixpack",
37+
"prepare": "npm run build",
38+
"release": "np",
39+
"test": "ava"
40+
},
3041
"dependencies": {
3142
"@aureooms/js-itertools": "^5.1.0"
3243
},
@@ -45,40 +56,29 @@
4556
"esdoc-inject-script-plugin": "1.0.0",
4657
"esdoc-inject-style-plugin": "1.0.0",
4758
"esdoc-standard-plugin": "1.0.0",
59+
"fixpack": "4.0.0",
4860
"np": "7.4.0",
49-
"nyc": "15.1.0",
50-
"fixpack": "4.0.0"
61+
"nyc": "15.1.0"
5162
},
52-
"files": [
53-
"lib"
54-
],
55-
"homepage": "https://aureooms.github.io/js-sat",
56-
"keywords": [
57-
"NP",
58-
"SAT",
59-
"algorithms",
60-
"boolean formula",
61-
"complete",
62-
"complexity",
63-
"computer science",
64-
"javascript",
65-
"js",
66-
"satisfiability"
67-
],
68-
"license": "AGPL-3.0",
69-
"main": "lib/index.js",
70-
"repository": {
71-
"url": "https://github.com/aureooms/js-sat",
72-
"type": "git"
63+
"ava": {
64+
"require": [
65+
"@babel/polyfill",
66+
"@babel/register"
67+
],
68+
"files": [
69+
"test/src/**/*"
70+
],
71+
"timeout": "1m",
72+
"concurrency": 8
7373
},
74-
"scripts": {
75-
"build": "rm -rf lib && babel src -d lib",
76-
"cover": "nyc --reporter=lcov npm test",
77-
"esdoc": "esdoc",
78-
"prepare": "npm run build",
79-
"release": "np",
80-
"test": "ava",
81-
"lint-config-and-fix": "fixpack || fixpack",
82-
"lint-config": "fixpack --dryRun"
74+
"babel": {
75+
"presets": [
76+
"@babel/preset-env"
77+
],
78+
"env": {
79+
"development": {
80+
"sourceMaps": "inline"
81+
}
82+
}
8383
}
8484
}

0 commit comments

Comments
 (0)