-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.22 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
{
"name": "node-jsdom-jasmine-spec",
"description": "Sample dna-dom project running on Node.js and jsdom executing Jasmine test cases",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"module": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dna-dom/node-jsdom-jasmine-spec.git"
},
"homepage": "https://github.com/dna-dom/node-jsdom-jasmine-spec",
"bugs": "https://github.com/dna-dom/node-jsdom-jasmine-spec/issues",
"docs": "https://dna-dom.org/docs",
"author": "Center Key (https://centerkey.com)",
"keywords": [
"dna-dom",
"node",
"jsdom",
"jasmine",
"javascript"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"node": true,
"jasmine": true
},
"scripts": {
"pretest": "jshint . --exclude-path .gitignore",
"test": "jasmine --reporter=jasmine-ts-console-reporter"
},
"dependencies": {
"dna-dom": "~3.3"
},
"devDependencies": {
"assert-deep-strict-equal": "~1.2",
"jasmine": "~6.1",
"jasmine-ts-console-reporter": "~3.1",
"jsdom": "~28.1",
"jshint": "~2.13"
}
}