-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.47 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
57
58
59
60
61
62
63
64
65
{
"name": "coffee-latte",
"version": "1.0.1",
"description": "Sweet mixins for CoffeeScript",
"main": "coffee-latte.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bennidi/coffee-latte.git"
},
"keywords": [
"coffeescript",
"mixin",
"trait"
],
"author": "bennidi",
"license": "MIT",
"bugs": {
"url": "https://github.com/bennidi/coffee-latte/issues"
},
"homepage": "https://github.com/bennidi/coffee-latte#readme",
"browserify": {
"transform": [
[
"coffeeify",
{
"sourceMap": true
}
]
]
},
"dependencies": {
"lodash": "^4.12.0"
},
"devDependencies": {
"browserify": "^11.0.1",
"chalk": "^1.1.1",
"coffee-script": "^1.10.0",
"coffeeify": "^2.0.1",
"gulp": "gulpjs/gulp#4.0",
"gulp-clean": "^0.3.1",
"gulp-concat": "^2.6.0",
"gulp-imagemin": "^3.0.1",
"gulp-mocha": "^3.0.1",
"gulp-notify": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-run": "^1.7.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-streamify": "^1.0.0",
"gulp-token-replace": "^1.0.3",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"karma-source-map-support": "^1.1.0",
"mocha": "^2.3.3",
"must": "^0.13.2",
"sinon": "^1.17.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"yargs": "^4.2.0"
},
"scripts":{
"prepublish": "npm run compile",
"compile": "gulp build",
"test" : "gulp test"
}
}