-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 834 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 834 Bytes
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
{
"name": "halcsstead",
"version": "0.0.2",
"description": "A small helper to calculcate the Halstead metrics of CSS selectors",
"author": {
"name": "Thomas Rasshofer",
"email": "hello@thomasrasshofer.com",
"url": "http://thomasrasshofer.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/rasshofer/halcsstead.git"
},
"bugs": {
"url": "https://github.com/rasshofer/halcsstead/issues"
},
"main": "halcsstead.js",
"keywords": [
"halcsstead",
"css",
"halstead",
"metrics"
],
"devDependencies": {
"jshint": "^2.9.4",
"tap": "^8.0.0"
},
"dependencies": {
"array-unique": "^0.3.2",
"css": "^2.2.1",
"css-selector-tree": "0.0.2"
},
"scripts": {
"test": "jshint halcsstead.js && tap test/tests.js --cov"
}
}