-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "browserify-transform-tools",
"version": "1.7.0",
"description": "Utilities for writing browserify transforms.",
"main": "./lib/transformTools.js",
"repository": {
"type": "git",
"url": "https://github.com/benbria/browserify-transform-tools.git"
},
"keywords": [
"browserify",
"transform",
"utilities"
],
"author": "Jason Walton (https://github.com/jwalton)",
"contributors": [
"Jason Walton <[email protected]> (https://github.com/jwalton)"
],
"license": "MIT",
"directories": {
"lib": "./lib"
},
"dependencies": {
"falafel": "^2.0.0",
"through": "^2.3.7"
},
"devDependencies": {
"browserify": "^10.1.0",
"chai": "^2.3.0",
"coffee-coverage": "^0.5.4",
"coffee-script": "^1.9.2",
"coveralls": "^2.11.2",
"es6-promise": "^2.1.1",
"istanbul": "^0.3.14",
"mocha": "^2.2.4"
},
"scripts": {
"test": "mocha && istanbul report text-summary lcov",
"prepublish": "coffee -c -o lib src && npm test",
"build": "coffee -c -o lib src"
}
}