@doccident/doccident 0.0.1 → 0.0.2

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 +10 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@doccident/doccident",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Test all the code in your markdown docs!",
5
5
  "main": "dist/doctest.js",
6
6
  "files": [
@@ -10,6 +10,14 @@
10
10
  "bin": {
11
11
  "doccident": "bin/cmd.js"
12
12
  },
13
+ "scripts": {
14
+ "build": "tsc",
15
+ "lint": "eslint . --ext .ts",
16
+ "test": "jest",
17
+ "precommit": "npm run lint && npm run test",
18
+ "clean": "rm -rf dist",
19
+ "prepublishOnly": "npm run clean && npm run build"
20
+ },
13
21
  "repository": {
14
22
  "type": "git",
15
23
  "url": "https://github.com/BillaudCipher/doccident"
@@ -53,12 +61,5 @@
53
61
  "@babel/preset-env",
54
62
  "@babel/preset-typescript"
55
63
  ]
56
- },
57
- "scripts": {
58
- "build": "tsc",
59
- "lint": "eslint . --ext .ts",
60
- "test": "jest",
61
- "prepublish": "pnpm run build",
62
- "clean": "rm -rf dist"
63
64
  }
64
- }
65
+ }