-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
52
53
54
55
56
{
"title": "mdJSON Schema Viewer",
"name": "mdtools",
"description": "Visualize mdJSON schemas using D3.js",
"version": "1.1.2",
"homepage": "https://github.com/adiwg/mdTools",
"repository": {
"type": "git",
"url": "https://github.com/adiwg/mdTools.git"
},
"author": {
"name": "Josh Bradley"
},
"//": "The following FQDN is the endpoint for your assets (no trailing slash):",
"production": "http://www.adiwg.org/mdTools",
"licenses": [
{
"type": "Unlicense",
"url": "http://unlicense.org/"
}
],
"dependencies": {
"bower": "^1.8.14",
"grunt": "~1",
"grunt-bower-task": "~0",
"grunt-cli": "~1",
"grunt-contrib-clean": "~1",
"grunt-contrib-concat": "~1",
"grunt-contrib-copy": "~1",
"grunt-contrib-jshint": "~1",
"grunt-contrib-sass": "~1",
"grunt-contrib-uglify": "~2",
"grunt-contrib-watch": "~1",
"grunt-env": "~0",
"grunt-preprocess": "~5",
"mdcodes": "2.10.1",
"mdjson-schemas": "2.10.1"
},
"scripts": {
"build": "npm install && grunt prod",
"deploy": "gh-pages -d docs",
"dev": "grunt dev",
"start": "grunt",
"watch": "grunt watch",
"test": "http-server -p 8080 docs/"
},
"devDependencies": {
"gh-pages": "^6.1.0",
"grunt-browserify": "^5.0",
"grunt-contrib-connect": "^1.0",
"grunt-dart-sass": "^2.0.1",
"json2csv": "^3.7",
"mustache": "^2.3",
"sass": "^1.69.5"
}
}