-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 KB
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
{
"name": "javascript-unit-test-jasmine",
"version": "1.0.0",
"description": "A comprehensive demonstration project for JavaScript unit testing using the Jasmine testing framework",
"main": "src/Calculator.js",
"scripts": {
"test": "jasmine",
"test:browser": "open SpecRunner.html",
"serve": "http-server -p 8000",
"coverage": "nyc jasmine",
"lint": "eslint src/ spec/",
"format": "prettier --write src/ spec/ docs/",
"start": "npm run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hkevin01/javascript-unit-test-jasmine.git"
},
"keywords": [
"javascript",
"testing",
"jasmine",
"unit-testing",
"bdd",
"behavior-driven-development",
"tdd",
"test-driven-development",
"examples",
"tutorial"
],
"author": "Kevin H",
"license": "MIT",
"bugs": {
"url": "https://github.com/hkevin01/javascript-unit-test-jasmine/issues"
},
"homepage": "https://github.com/hkevin01/javascript-unit-test-jasmine#readme",
"devDependencies": {
"eslint": "^8.0.0",
"http-server": "^14.0.0",
"jasmine": "^5.0.0",
"nyc": "^15.0.0",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}