forked from pluralsight/htmlTagValidator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 846 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
34
35
36
37
{
"name": "html-tag-validator",
"version": "1.6.0",
"main": "index.js",
"author": "Code School",
"contributors": [
{
"name": "Nick Wronski",
"url": "https://github.com/nwronski"
},
{
"name": "Adam Rensel",
"url": "https://github.com/renz45"
},
{
"name": "Russell Centanni",
"url": "https://github.com/lizardruss"
}
],
"license": "MIT",
"description": "PEG.js implementation of HTML tag validator",
"repository": "[email protected]:codeschool/htmlTagValidator.git",
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"chai": "^3.5.0",
"grunt": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-shell": "^2.1.0",
"lodash": "^4.17.2",
"mocha": "^3.2.0",
"pegjs": "^0.10.0",
"prettyjson": "^1.2.1"
},
"dependencies": {}
}