-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "optimal-select",
"description": "Get efficient & robust CSS selectors for HTML elements",
"version": "4.0.1",
"author": "Stefan Dühring | Autarc <[email protected]>",
"bugs": {
"url": "https://github.com/Autarc/optimal-select/issues"
},
"devDependencies": {
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"cheerio": "^0.22.0",
"deep-merge": "^1.0.0",
"fs-extra": "^1.0.0",
"gulp": "^3.9.1",
"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",
"open-url": "^2.0.2",
"webpack": "^2.2.0-rc.2"
},
"homepage": "https://github.com/Autarc/optimal-select",
"keywords": [
"css",
"path",
"selector",
"element"
],
"license": "MIT",
"main": "lib/index.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Autarc/optimal-select.git"
},
"scripts": {
"prepublish": "npm run build",
"check": "npm outdated -depth 0",
"build": "NODE_ENV=production node build",
"dev": "NODE_ENV=development node build",
"example": "open-url 'http:/localhost:8080/example' && http-server"
}
}