forked from ericclemmons/unique-selector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.76 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
68
69
70
71
72
73
74
75
{
"name": "@ceros/unique-selector",
"version": "1.0.0",
"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 --require @babel/register",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"watch": "npm-scripts-watcher"
},
"watch": {
"src/**/*.js": [
"compile"
]
},
"publishConfig": {
"registry":"https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git://github.com/ceros/unique-selector.git"
},
"keywords": [
"dom",
"html",
"css",
"selector",
"event"
],
"author": "Eric Clemmons <eric@smarterspam.com>",
"contributors": [
{
"name": "Avraam Mavridis",
"email": "avr.mav@gmail.com"
},
{
"name": "Son Le",
"email": "son.le@ceros.com"
},
{
"name": "Arron Woods",
"email": "arron.woods@ceros.com"
}
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/node": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/register": "^7.15.3",
"chai": "^4.3.4",
"component": "~0.10.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-lite": "^1.0.4",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^1.7.0",
"jquery": "^3.6.0",
"mocha": "^6.2.3",
"mocha-jsdom": "^2.0.0",
"mocha-phantomjs": "~4.1.0"
},
"dependencies": {
"cssesc": "^3.0.0"
}
}