-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "pcomb",
"version": "2.7.0",
"description": "parser combinators utilities",
"type": "module",
"module": "es/index.js",
"main": "es/index.js",
"types": "es/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/yelouafi/pcomb.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yelouafi/pcomb/issues"
},
"keywords": [
"javascript",
"parser",
"grammar"
],
"author": "Yassine ELOUAFI <yelouafi@gmail.com>",
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.22",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
},
"scripts": {
"test": "jest",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"build": "npm test && tsc",
"release:patch": "npm run build && npm version patch && git push --follow-tags && npm publish",
"release:minor": "npm run build && npm version minor && git push --follow-tags && npm publish",
"release:major": "npm run build && npm version major && git push --follow-tags && npm publish"
}
}