-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (39 loc) · 1007 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
38
39
{
"name": "butterjs",
"version": "1.0.1",
"description": "A NodeJS library for effective customer churn calculation.",
"keywords": [
"churn",
"retention",
"churn rate",
"subscription metrics"
],
"main": "lib/index.js",
"scripts": {
"prepublish": "coffee --bare --compile --output lib src/*.coffee",
"postpublish": "rm -rf lib",
"test": "node_modules/.bin/grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/cwhitten/butter.js.git"
},
"author": "Chris Whitten",
"license": "MIT",
"bugs": {
"url": "https://github.com/cwhitten/butter.js/issues"
},
"homepage": "https://github.com/cwhitten/butter.js",
"devDependencies": {
"coffee-script": "^1.8.0",
"coffeelint": "^1.8.1",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-coffeelint": "0.0.13",
"grunt-contrib-coffee": "^0.12.0",
"grunt-mocha-cli": "^1.11.0",
"mocha": "^2.0.1",
"should": "^4.4.4",
"sinon": "^1.12.2"
}
}