forked from autarc/optimal-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
{
"name": "optimal-select",
"description": "Get efficient & robust CSS selectors for HTML elements",
"version": "3.2.11",
"author": "Josh Wymer | Mixpanel <[email protected]>",
"bugs": {
"url": "https://github.com/jbwyme/optimal-select/issues"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"chai": "^3.5.0",
"cheerio": "^0.20.0",
"deep-merge": "^1.0.0",
"eslint": "^2.9.0",
"fs-extra": "^0.26.7",
"jsdom": "^9.0.0",
"jsdom-global": "^2.0.0",
"mocha": "^2.4.5",
"rollup": "^0.26.2",
"rollup-plugin-babel": "^2.4.0"
},
"homepage": "https://github.com/jbwyme/optimal-select",
"keywords": [
"css",
"path",
"selector"
],
"license": "MIT",
"main": "build/index.cjs.js",
"jsnext:main": "build/index.es6.js",
"repository": {
"type": "git",
"url": "https://github.com/jbwyme/optimal-select.git"
},
"scripts": {
"build": "./node_modules/rollup/bin/rollup -c rollup.config.cjs.js && ./node_modules/rollup/bin/rollup -c rollup.config.es6.js && ./node_modules/rollup/bin/rollup -c rollup.config.umd.js",
"lint": "./node_modules/eslint/bin/eslint.js ./src ./tests",
"test": "./node_modules/mocha/bin/mocha --compilers js:babel-core/register tests/**"
},
"dependencies": {
"cssesc": "^0.1.0"
}
}