forked from ericclemmons/unique-selector
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 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
{
"name": "@cypress/unique-selector",
"version": "0.4.4",
"description": "Given a DOM node, return a unique CSS selector matching only that element",
"main": "./lib/index.js",
"jsnext:main": "./src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run compile",
"test": "npm run compile && mocha --ignore-leaks",
"compile": "babel -d lib/ src/",
"prepublishOnly": "npm run compile",
"watch": "npm-scripts-watcher"
},
"watch": {
"src/**/*.js": [
"compile"
]
},
"repository": {
"type": "git",
"url": "git://github.com/cypress-io/unique-selector.git"
},
"keywords": [
"dom",
"html",
"css",
"selector",
"event"
],
"author": "Cypress",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.3.4",
"component": "~1.1.0",
"eslint": "^8.0.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-lite": "^1.0.4",
"eslint-plugin-react": "^7.26.1",
"jquery": "^3.6.0",
"jsdom": "^18.0.0",
"mocha": "~9.1.3",
"mocha-jsdom": "^2.0.0",
"mocha-phantomjs": "~4.1.0",
"npm-scripts-watcher": "^1.0.2"
},
"dependencies": {
"css.escape": "^1.5.1"
},
"files": [
"lib"
]
}