-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
60 lines (60 loc) · 1.45 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "edtf",
"version": "4.6.0",
"description": "Extended Date Time Format (EDTF) / ISO 8601-2 Parser and Library",
"type": "module",
"main": "./dist/index.cjs",
"exports": {
".": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"./sample": "./src/sample.js",
"./types": "./src/types.js"
},
"scripts": {
"lint": "eslint src test",
"compile": "nearleyc -o src/grammar.js src/edtf.ne || true",
"postcompile": "rollup -c rollup.config.js",
"prepare": "npm run compile",
"pretest": "npm run lint",
"test": "mocha",
"coverage": "c8 --reporter=lcov --reporter=text-summary npm test",
"debug": "node inspect $(npm bin)/_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inukshuk/edtf.js.git"
},
"keywords": [
"edtf",
"date",
"time",
"parser",
"ISO 8601"
],
"author": [
"Sylvester Keil <sylvester@keil.or.at>"
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/inukshuk/edtf.js/issues"
},
"homepage": "https://github.com/inukshuk/edtf.js#readme",
"dependencies": {
"nearley": "^2.19.7"
},
"optionalDependencies": {
"randexp": "^0.5.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"c8": "^9.0.0",
"chai": "^5.1.0",
"eslint": "^9.1.0",
"globals": "^15.0.0",
"mocha": "^10.0.0",
"rollup": "^4.1.4"
}
}