forked from autarc/optimal-select
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.44 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
47
48
49
50
51
52
{
"name": "optimal-select",
"description": "Get efficient & robust CSS selectors for HTML elements",
"version": "4.0.1",
"author": "Stefan Dühring | Autarc <autarc@gmail.com>",
"bugs": {
"url": "https://github.com/Autarc/optimal-select/issues"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.5",
"cheerio": "^0.22.0",
"deep-merge": "^1.0.0",
"fs-extra": "^1.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"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.12.3",
"lodash": "^4.17.4",
"webpack": "^4.43.0"
},
"homepage": "https://github.com/Autarc/optimal-select",
"keywords": [
"css",
"path",
"selector",
"element"
],
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Autarc/optimal-select.git"
},
"scripts": {
"prepare": "npm run build",
"check": "npm outdated -depth 0",
"build": "NODE_ENV=production node build",
"dev": "NODE_ENV=development node build"
},
"dependencies": {}
}