-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
51 lines (51 loc) · 1.09 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
51
{
"name": "parserlib",
"version": "1.1.2",
"author": "Nicholas C. Zakas",
"contributors": [
"Nick Schonning"
],
"description": "CSS3 SAX-inspired parser",
"license": "MIT",
"homepage": "https://github.com/CSSLint/parser-lib",
"repository": {
"type": "git",
"url": "https://github.com/CSSLint/parser-lib.git"
},
"bugs": {
"url": "https://github.com/CSSLint/parser-lib/issues"
},
"keywords": [
"parser",
"css",
"css3",
"sax",
"style",
"stylesheet"
],
"main": "./src/index.js",
"scripts": {
"build": "node scripts/build.js",
"coverage": "ytestrunner -c",
"lint": "jshint scripts src tests",
"prepublish": "npm test",
"pretest": "npm run lint",
"test": "npm run test-yuitest",
"test-yuitest": "ytestrunner"
},
"devDependencies": {
"babybird": "0.0.1",
"browserify": "^13.0.0",
"concat-stream": "^1.5.1",
"factor-bundle": "^2.5.0",
"jshint": "^2.9.1",
"moment": "^2.11.2",
"shelljs": "^0.7.5",
"ytestrunner": "^0.3.3",
"yuitest": "^0.7.9"
},
"files": [
"dist",
"src"
]
}