forked from autarc/optimal-select
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.22 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
{
"name": "@letznav/optimal-select",
"description": "Get efficient & robust CSS selectors for HTML elements",
"version": "4.3.2",
"author": "Stefan Dühring | Autarc <[email protected]>",
"contributors": [
"LetzNav | LetzNav <[email protected]>"
],
"bugs": {
"url": "https://github.com/sriniraju-letznav/optimal-select/issues"
},
"devDependencies": {
"babel-loader": "7.1.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "4.1.6",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^4.3.4",
"cheerio": "^0.22.0",
"cross-env": "^7.0.3",
"deep-merge": "^1.0.0",
"eslint": "7.32.0",
"fs-extra": "^1.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^6.1.2",
"gulp-load-plugins": "^1.3.0",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.10",
"http-server": "^0.9.0",
"jsdom": "^18.0.0",
"mocha": "^9.1.3",
"mocha-chai-snapshot": "^1.0.0",
"nyc": "^15.1.0",
"open-url": "^2.0.2",
"sizzle": "^2.3.6",
"webpack": "^2.2.0-rc.2",
"wicked-good-xpath": "^1.3.0"
},
"homepage": "https://github.com/sriniraju-letznav/optimal-select",
"keywords": [
"css",
"path",
"selector",
"element"
],
"license": "MIT",
"main": "dist/optimal-select.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/sriniraju-letznav/optimal-select.git"
},
"scripts": {
"check": "npm outdated -depth 0",
"build": "cross-env NODE_ENV=production node build",
"dev": "cross-env NODE_ENV=development node build",
"example": "open-url 'http:/localhost:8080/example' && http-server",
"lint": "eslint \"src/**/*.js\" \"tests/**/*.spec.js\"",
"test": "mocha --no-parallel --require babel-core/register \"tests/**/*.spec.js\"",
"test:watch": "npm run test -- --watch",
"test:coverage": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text-summary mocha --require babel-core/register \"tests/**/*.spec.js\"",
"test:update": "cross-env CHAI_SNAPSHOT_UPDATE=true npm run test"
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}