-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1016 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
36
37
38
39
40
{
"name": "partser",
"version": "3.0.3",
"description": "parser library for extremely modular parsers",
"keywords": [
"parser",
"modular",
"parser combinator",
"sub-parser"
],
"author": "Antti Korpi <an@cyan.io>",
"contributors": [
"Jeanine Adkisson <jneen at jneen dot net>"
],
"repository": "anko/partser",
"files": [
"index.js"
],
"main": "index.js",
"license": "ISC",
"devDependencies": {
"coveralls": "^3.1.1",
"nyc": "^15.1.0",
"standard": "^16.0.3",
"tape": "^5.3.1",
"txm": "^8.0.0"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"slice-with-context": "^1.0.1",
"supports-color": "^7.2.0"
},
"scripts": {
"test": "npm run-script test-code-with-coverage && npm run-script test-docs && standard",
"test-code": "node test.js",
"test-docs": "txm readme.markdown",
"test-code-with-coverage": "nyc npm run-script test-code",
"upload-coverage-report": "nyc report --reporter=text-lcov | coveralls"
}
}