-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 KB
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
{
"name": "pod6",
"version": "0.0.49",
"description": "Pod6 is an easy-to-use markup language",
"main": "built/index.js",
"types": "./built/index.d.ts",
"scripts": {
"postversion": "git commit package.json CHANGELOG.md -m \"v$npm_package_version\" && npm run tag && git push && git push --tags",
"clean": "rm -rf built",
"test": "yarn build && jest",
"build": "run-s build:ts build:pegjs",
"build:ts": "tsc",
"build:pegjs": "pegjs -o built/grammar.js src/grammar.pegjs && pegjs -o built/grammarfc.js src/grammarfc.pegjs",
"watch": "run-p -r watch:*",
"watch:ts": "tsc -w --pretty",
"watch:tests": "jest --watch -t \"test\"",
"watch:pegjs": "nodemon"
},
"bin": {
"pod6html": "bin/pod6html"
},
"files": [
"built/**/*.js",
"built/**/*.d.ts",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"pod6",
"raku"
],
"repository": {
"type": "git",
"url": "https://github.com/zag/js-pod6"
},
"author": "Alexandr Zahatski",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/node": "^14.11.1",
"glob": "^7.1.6",
"jest": "26",
"jest-extended": "^0.11.2",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"pegjs": "^0.10.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.6",
"typescript": "^4.8.4"
},
"dependencies": {
"events": "^3.1.0"
}
}