@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.
Files changed (1) hide show
  1. package/package.json +14 -18
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vanillaes/absurdum",
3
- "version": "2.0.4",
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": "tape-es",
45
- "test:watch": "tape-watch-es",
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": "npx -p typescript tsc index.js -t esnext --allowJS --checkJS --skipLibCheck --declaration --emitDeclarationOnly --noEmitOnError",
52
- "clean": "npm run clean:docs && npm run clean:builds && npm run clean:typings",
53
- "clean:docs": "npx rimraf docs/**/*.md",
54
- "clean:builds": "npx rimraf index.min.js",
55
- "clean:typings": "npx rimraf src/**/*.d.ts",
56
- "package": "npx rimraf package && npm pack | tail -n 1 | xargs tar -xf",
57
- "preversion": "npm test && npm run lint && npm run types",
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
- "esmtk": "^0.5.13",
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
  }