Skip to content

Commit 8a14f42

Browse files
🎨 style(package.json): Run fixpack.
1 parent 2062145 commit 8a14f42

File tree

1 file changed

+51
-51
lines changed

1 file changed

+51
-51
lines changed

package.json

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,35 @@
11
{
2+
"name": "@aureooms/js-functools",
3+
"description": "functions code bricks for JavaScript",
4+
"version": "2.0.3",
5+
"author": "aureooms",
6+
"ava": {
7+
"files": [
8+
"test/src/**/*"
9+
],
10+
"require": [
11+
"@babel/polyfill",
12+
"@babel/register"
13+
],
14+
"timeout": "1m"
15+
},
16+
"babel": {
17+
"presets": [
18+
"@babel/preset-env"
19+
],
20+
"plugins": [
21+
"@babel/plugin-proposal-async-generator-functions"
22+
],
23+
"env": {
24+
"development": {
25+
"sourceMaps": "inline"
26+
}
27+
}
28+
},
229
"bugs": {
330
"url": "https://github.com/aureooms/js-functools/issues"
431
},
532
"dependencies": {},
6-
"homepage": "http://aureooms.github.io/js-functools/",
7-
"version": "2.0.3",
8-
"keywords": [
9-
"bricks",
10-
"compose",
11-
"curry",
12-
"ender",
13-
"function",
14-
"functools",
15-
"functional",
16-
"javascript",
17-
"js",
18-
"partial"
19-
],
20-
"scripts": {
21-
"build": "rm -rf lib && babel src -d lib",
22-
"test": "ava",
23-
"esdoc": "esdoc",
24-
"prepare": "npm run build",
25-
"cover": "nyc --reporter=lcov npm test",
26-
"release": "np"
27-
},
2833
"devDependencies": {
2934
"@babel/cli": "7.8.4",
3035
"@babel/core": "7.9.0",
@@ -40,39 +45,34 @@
4045
"np": "6.2.2",
4146
"nyc": "15.0.1"
4247
},
48+
"files": [
49+
"lib"
50+
],
51+
"homepage": "http://aureooms.github.io/js-functools/",
52+
"keywords": [
53+
"bricks",
54+
"compose",
55+
"curry",
56+
"ender",
57+
"function",
58+
"functional",
59+
"functools",
60+
"javascript",
61+
"js",
62+
"partial"
63+
],
4364
"license": "AGPL-3.0",
4465
"main": "lib/index.js",
45-
"description": "functions code bricks for JavaScript",
4666
"repository": {
4767
"url": "https://github.com/aureooms/js-functools.git",
4868
"type": "git"
4969
},
50-
"author": "aureooms",
51-
"name": "@aureooms/js-functools",
52-
"babel": {
53-
"presets": [
54-
"@babel/preset-env"
55-
],
56-
"plugins": [
57-
"@babel/plugin-proposal-async-generator-functions"
58-
],
59-
"env": {
60-
"development": {
61-
"sourceMaps": "inline"
62-
}
63-
}
64-
},
65-
"ava": {
66-
"files": [
67-
"test/src/**/*"
68-
],
69-
"require": [
70-
"@babel/polyfill",
71-
"@babel/register"
72-
],
73-
"timeout": "1m"
74-
},
75-
"files": [
76-
"lib"
77-
]
70+
"scripts": {
71+
"build": "rm -rf lib && babel src -d lib",
72+
"cover": "nyc --reporter=lcov npm test",
73+
"esdoc": "esdoc",
74+
"prepare": "npm run build",
75+
"release": "np",
76+
"test": "ava"
77+
}
7878
}

0 commit comments

Comments
 (0)