-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 860 Bytes
/
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
{
"name": "css-selector-inspector",
"version": "0.1.0",
"description": "Parse, validate, and inspect CSS selectors",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile-grammar": "nearleyc src/selector-grammar.ne -o src/selector-grammar.js",
"build": "npm run compile-grammar && babel src -d dist",
"prepare": "npm run build"
},
"keywords": [
"CSS",
"selector",
"parser",
"specificity"
],
"author": "balbuf",
"repository": {
"type": "git",
"url": "https://github.com/balbuf/css-selector-inspector"
},
"license": "MIT",
"dependencies": {
"nearley": "^2.9.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.5.1",
"markdown-toc": "^1.1.0"
}
}