-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
39 lines (39 loc) · 978 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": "aliasify",
"version": "2.1.0",
"description": "Rewrite require calls in browserify modules.",
"main": "./lib/aliasify.js",
"repository": {
"type": "git",
"url": "https://github.com/benbria/aliasify.git"
},
"keywords": [
"browserify",
"alias"
],
"author": "Jason Walton (https://github.com/jwalton)",
"contributors": [
"Jason Walton <[email protected]> (https://github.com/jwalton)"
],
"license": "MIT",
"directories": {
"lib": "./lib"
},
"dependencies": {
"browserify-transform-tools": "~1.7.0"
},
"devDependencies": {
"coffee-coverage": "^0.7.0",
"coffee-script": "^1.8.0",
"coveralls": "^2.11.6",
"es6-promise": "^3.0.2",
"istanbul": "^0.4.1",
"mocha": "^2.1.0",
"promise-breaker": "^3.0.0"
},
"scripts": {
"test": "mocha && istanbul report text-summary lcov",
"prepublish": "coffee -c -o lib src && mocha test",
"build": "coffee -c -o lib src"
}
}