-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "durations-parser",
"version": "1.0.0",
"description": "Parser of ISO 8601 notation for durations",
"main": "dist/durations.compiled.js",
"scripts": {
"test": "tsc && mocha -r ts-node/register 'tests/**/*.ts'",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"build": "npm test && npm run format",
"try": "tsc && npm run format && node ./dist/src/example.js",
"dev": "tsc --watch",
"lint": "eslint --ignore-path .eslintignore --ext .ts ./src ./tests",
"circ": "npx madge --circular --extensions ts ./"
},
"author": "Michele Pozzi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/123mpozzi/TemporalDurationParser.git"
},
"keywords": [
"iso 8601",
"iso_8601",
"8601",
"Temporal",
"Duration",
"Temporal.Duration",
"Period",
"Parser",
"Date"
],
"files": [
"dist"
],
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/rewire": "^2.5.28",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"chai": "^4.3.7",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}