-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 819 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 819 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
{
"private": true,
"name": "thendral-transpiler",
"description": "",
"version": "2.0.0",
"license": "MIT",
"author": {
"name": "Naveen Muthusamy",
"email": "kmnaveen101@gmail.com",
"url": "https://naveen17797.github.io/"
},
"scripts": {
"test": "jasmine --reporter=jasmine-console-reporter --config=jasmine.json",
"coverage": "nyc npm run test && nyc report --reporter=html",
"coveralls": "nyc npm run test && nyc report --reporter=text-lcov | coveralls -v"
},
"devDependencies": {
"@types/jasmine": "^3.10.2",
"@types/node": "^17.0.0",
"coveralls": "^3.1.1",
"jasmine": "^3.10.0",
"jasmine-console-reporter": "^2.0.1",
"jasmine-ts": "^0.4.0",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}