-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 847 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
{
"name": "parsernostrum",
"type": "module",
"version": "1.2.6",
"description": "A tiny LL parser combinator library for JavaScript",
"main": "src/Parsernostrum.js",
"types": "src/types.js",
"scripts": {
"build": "rollup --config",
"test": "npx playwright test",
"playwright": "npx playwright test --ui --debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barsdeveloper/parsernostrum.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/barsdeveloper/parsernostrum/issues"
},
"homepage": "https://github.com/barsdeveloper/parsernostrum#readme",
"devDependencies": {
"@playwright/test": "^1",
"@rollup/plugin-terser": "^0",
"http-server": "^14",
"playwright": "^1",
"rollup": "^4"
},
"dependencies": {}
}