UNPKG

1.17 kBJSONView Raw
1{
2 "name": "selector-lite",
3 "version": "0.1.1",
4 "stability": 2,
5 "license": "MIT",
6 "author": "Lauri Rooden <lauri@rooden.ee>",
7 "description": "A small pure-JavaScript CSS selector engine",
8 "keywords": [
9 "browser",
10 "css",
11 "selector",
12 "matches",
13 "closest",
14 "litejs"
15 ],
16 "main": "selector.js",
17 "readmeFilename": "README.md",
18 "scripts": {
19 "build": "node node_modules/buildman/index.js --all",
20 "travis-test": "istanbul cover ./tests/index.js && (coveralls < coverage/lcov.info || exit 0)",
21 "cover-climate": "istanbul cover ./tests/index.js && (codeclimate < coverage/lcov.info || exit 0)",
22 "test": "faucet; jshint --verbose selector.js"
23 },
24 "repository": "git://github.com/litejs/selector-lite.git",
25 "bugs": {
26 "url": "https://github.com/litejs/selector-lite/issues"
27 },
28 "devDependencies": {
29 "buildman": "*",
30 "tape": "2.12.x"
31 },
32 "buildman": {
33 "dist/selector-min.js": {
34 "banner": "/*! litejs.com/MIT-LICENSE.txt */",
35 "input": "selector.js"
36 }
37 },
38 "jshintConfig": {
39 "asi": true,
40 "laxcomma": true,
41 "maxdepth": 6,
42 "quotmark": "double",
43 "-W030": false
44 }
45}