-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.29 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.29 KB
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
{
"name": "angular-indeterminate-checkbox",
"version": "0.1.0",
"description": "AngularJS directive for three-state checkboxes.",
"author": "Good Eggs <open-source@goodeggs.com>",
"contributors": [
"Max Edmands <me@maxedmands.com>"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/goodeggs/angular-indeterminate-checkbox.git"
},
"homepage": "https://github.com/goodeggs/angular-indeterminate-checkbox",
"bugs": "https://github.com/goodeggs/angular-indeterminate-checkbox/issues",
"dependencies": {},
"devDependencies": {
"coffee-script": ">=1.7.x",
"karma": "^0.10.9",
"karma-coffee-preprocessor": "^0.1.3",
"karma-phantomjs-launcher": "^0.1.2",
"karma-mocha": "^0.1.1",
"uglify-js": "^2.4.12",
"browserify": "^3.32.0",
"bower": "^1.3.1",
"karma-sinon-chai": "^0.1.5"
},
"scripts": {
"compile": "coffee --bare --compile --output lib/ src/",
"test": "karma start",
"prepublish": "bower -sj install",
"link": "browserify lib/index.js > angular-indeterminate-checkbox.js",
"minify": "uglifyjs angular-indeterminate-checkbox.js > angular-indeterminate-checkbox.min.js",
"build": "npm run compile && npm run link && npm run minify",
"pretest": "npm run build"
}
}