-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@posttext/build",
"version": "0.1.7",
"description": "The next generation markup language for everyone!",
"keywords": [
"text",
"markup",
"preprocessor",
"html"
],
"homepage": "https://github.com/posttext-project/posttext#readme",
"bugs": {
"url": "https://github.com/posttext-project/posttext/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/posttext-project/posttext.git"
},
"license": "MPL-2.0",
"author": "clitetailor",
"type": "module",
"main": "./src/index.js",
"scripts": {
"start": "node packages/cli/lib/bin/index.js",
"dev": "gulp clean && gulp build && node packages/cli/lib/bin/index.js",
"debug": "gulp clean && gulp build && node --inspect-brk packages/cli/lib/bin/index.js",
"build": "gulp clean && pnpm format && gulp build",
"format": "prettier -c .prettierrc.yaml --write **/*.{html,ts,js,json}",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"add-license": "node scripts/add-license -f templates/Exhibit-A.ts packages/*/src/**/*.{ts,js} packages/*/*.{ts,js} *.{ts,js}",
"publish-all": "pnpm build && pnpm test && pnpm m --filter ./packages publish --access public --tag beta",
"bump-version": "node scripts/bump-version.js"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cross-env": "^7.0.3",
"del": "^6.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^3.4.1",
"glob": "^7.2.3",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "6.0.0-alpha.1",
"husky": "^6.0.0",
"jest": "^27.5.1",
"meow": "^10.1.5",
"merge-stream": "^2.0.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"semver": "^7.6.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^4.9.5"
}
}