-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 860 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 860 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
{
"name": "codeprint",
"version": "0.1.1",
"description": "Auto-generate markup examples for your styleguide",
"main": "dist/codePrint.js",
"readmeFilename": "README.md",
"author": {
"name": "Ben Browning",
"email": "ben@bright-interactive.co.uk"
},
"repository": {
"url": "https://github.com/benbrowning/codeprint.git",
"type": "git"
},
"license": "MIT",
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"jshint-stylish": "^0.2.0",
"karma-chrome-launcher": "~0.1.5",
"karma-firefox-launcher": "~0.1.3",
"karma-mocha": "~0.1.9",
"karma-chai": "~0.1.0",
"karma-phantomjs-launcher": "~0.1.4",
"uglify-js": "~2.4.15"
},
"scripts": {
"test": "karma start --single-run",
"watch": "karma start",
"build": "uglifyjs lib/codePrint.js -mc > dist/codePrint.min.js "
}
}