aboutsummaryrefslogtreecommitdiff
path: root/node_modules/css-what/package.json
blob: b55c98ca5bff2e522e073bb92e1ef7f6aa544432 (plain)
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
{
  "author": "Felix Böhm <me@feedic.com> (http://feedic.com)",
  "name": "css-what",
  "description": "a CSS selector parser",
  "version": "2.1.0",
  "repository": {
    "url": "https://github.com/fb55/css-what"
  },
  "main": "./index.js",
  "files": [
    "index.js"
  ],
  "scripts": {
    "test": "node tests/test.js && jshint *.js"
  },
  "dependencies": {},
  "devDependencies": {
    "jshint": "2"
  },
  "optionalDependencies": {},
  "engines": {
    "node": "*"
  },
  "license": "BSD-like",
  "jshintConfig": {
    "eqeqeq": true,
    "freeze": true,
    "latedef": "nofunc",
    "noarg": true,
    "nonbsp": true,
    "quotmark": "double",
    "undef": true,
    "unused": true,
    "trailing": true,
    "eqnull": true,
    "proto": true,
    "smarttabs": true,
    "node": true,
    "globals": {
      "describe": true,
      "it": true
    }
  }
}