-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 752 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 752 Bytes
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
{
"name": "inline-comment-parser",
"version": "1.0.1",
"description": "A utility for parsing inline comments",
"repository": {
"type": "git",
"url": "https://github.com/Ilya-Meer/inline-comment-parser.git"
},
"author": "Ilya Meerovich",
"keywords": [
"node",
"comment",
"parser"
],
"main": "dist/index.js",
"files": [
"README.md",
"LICENSE",
"dist/"
],
"scripts": {
"build": "tsc",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^25.2.2",
"@types/node": "^14.0.1",
"jest": "^26.0.1",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.2"
},
"dependencies": {
"glob": "^7.1.6"
}
}