-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 932 Bytes
/
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
{
"name": "pierrejs",
"version": "0.5.0",
"description": "A parser library with human-friendly parsing errors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"pretest": "npm run build",
"test": "lab -v -t 100 -I require -a @hapi/code",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabriel-pinheiro/pierrejs.git"
},
"keywords": [
"parser",
"combinator"
],
"author": "Gabriel Pinheiro <gabrielctpinheiro@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gabriel-pinheiro/pierrejs/issues"
},
"homepage": "https://github.com/gabriel-pinheiro/pierrejs#readme",
"devDependencies": {
"@hapi/code": "^8.0.3",
"@hapi/lab": "^24.3.2",
"@types/node": "^16.9.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
}
}