-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 1.86 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@testing-library/jasmine-dom",
"version": "0.0.0-semantically-released",
"description": "Custom Jasmine matchers for testing DOM elements",
"main": "./dist/index.js",
"scripts": {
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"lint:fix": "kcd-scripts lint --fix",
"lint:watch": "onchange \"src/**/*.js\" \"tests/**/*.js\" -- npm run lint:fix",
"test": "nyc --reporter=text --reporter=lcov jasmine --config=jasmine.json",
"test:watch": "onchange \"src/**/*.js\" \"src/__tests__/**/*.js\" -- npm run test",
"validate": "npm run lint && npm run test && npm run build",
"setup": "npm install && npm run validate"
},
"files": [
"dist"
],
"keywords": [
"testing",
"dom",
"jasmine",
"matchers",
"jsdom"
],
"author": "Brian Alexis Michel <[email protected]> (https://github.com/brrianalexis)",
"license": "MIT",
"dependencies": {
"aria-query": "^5.1.3",
"chalk": "^4.1.0",
"css": "^3.0.0",
"css.escape": "^1.5.1",
"dom-accessibility-api": "^0.5.16",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"@types/jasmine": "^4.3.1",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-istanbul": "^6.1.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jasmine": "^4.5.0",
"jasmine-reporters": "^2.5.2",
"jasmine-spec-reporter": "^7.0.0",
"jsdom": "^16.2.1",
"kcd-scripts": "^12.3.0",
"nyc": "^15.1.0",
"onchange": "^7.1.0",
"prettier": "^2.8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/testing-library/jasmine-dom"
},
"bugs": {
"url": "https://github.com/testing-library/jasmine-dom/issues"
},
"homepage": "https://github.com/testing-library/jasmine-dom#readme",
"volta": {
"node": "16.18.1"
}
}