@vanillaes/absurdum 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +14 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vanillaes/absurdum",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "Absurdum - The Ridiculous Application of Reduce",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"esm",
|
|
@@ -41,35 +41,31 @@
|
|
|
41
41
|
},
|
|
42
42
|
"types": "index.d.ts",
|
|
43
43
|
"scripts": {
|
|
44
|
-
"test": "
|
|
45
|
-
"
|
|
46
|
-
"lint": "esmtk lint",
|
|
47
|
-
"types": "npx -p typescript tsc index.js -t esnext --allowJS --checkJS --skipLibCheck --noEmit",
|
|
44
|
+
"test": "esmtk test",
|
|
45
|
+
"type": "esmtk type index.js",
|
|
48
46
|
"build": "npm run build:min && npm run build:docs && npm run build:typings",
|
|
49
47
|
"build:docs": "node .config/docs.config.js",
|
|
50
48
|
"build:min": "esmtk minify index.js index.min.js",
|
|
51
|
-
"build:typings": "
|
|
52
|
-
"clean": "npm run clean:docs && npm run clean:
|
|
53
|
-
"clean:docs": "
|
|
54
|
-
"clean:
|
|
55
|
-
"clean:typings": "
|
|
56
|
-
"
|
|
57
|
-
"preversion": "npm test && npm run
|
|
49
|
+
"build:typings": "esmtk typings index.js",
|
|
50
|
+
"clean": "npm run clean:docs && npm run clean:min && npm run clean:typings",
|
|
51
|
+
"clean:docs": "esmtk clean --custom docs/**/*.md",
|
|
52
|
+
"clean:min": "esmtk clean --minify",
|
|
53
|
+
"clean:typings": "esmtk clean --typings",
|
|
54
|
+
"preview": "esmtk preview",
|
|
55
|
+
"preversion": "npm test && npm run type",
|
|
58
56
|
"postversion": "git push --follow-tags"
|
|
59
57
|
},
|
|
60
58
|
"devDependencies": {
|
|
61
59
|
"docdown": "github:evanplaice/docdown",
|
|
62
|
-
"
|
|
63
|
-
"glob": "^7.2.0",
|
|
64
|
-
"tape-es": "^1.2.16"
|
|
65
|
-
},
|
|
66
|
-
"engines": {
|
|
67
|
-
"node": ">=14"
|
|
60
|
+
"glob": "^7.2.0"
|
|
68
61
|
},
|
|
69
62
|
"standard": {
|
|
70
63
|
"ignore": [
|
|
71
64
|
"index.js",
|
|
72
65
|
"docs.config.js"
|
|
73
66
|
]
|
|
67
|
+
},
|
|
68
|
+
"dependencies": {
|
|
69
|
+
"@vanillaes/esmtk": "^1.2.3"
|
|
74
70
|
}
|
|
75
71
|
}
|