-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.41 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
{
"name": "browserify-swap",
"version": "0.2.2",
"description": "A transform that swaps out modules according to a config in your package.json selected via an environment variable.",
"main": "index.js",
"scripts": {
"test-main": "tap test/*.js",
"test-0.8": "nave use 0.8 npm run test-main",
"test-0.10": "nave use 0.10 npm run test-main",
"test-all": "npm run test-main && npm run test-0.8 && npm run test-0.10",
"test": "if [ -e $TRAVIS ]; then npm run test-all; else npm run test-main; fi"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/browserify-swap.git"
},
"homepage": "https://github.com/thlorenz/browserify-swap",
"dependencies": {
"find-parent-dir": "~0.1.0",
"through2": "~0.2.3",
"resolve": "~0.6.1",
"viralify": "~0.4.1"
},
"devDependencies": {
"nave": "~0.4.3",
"tap": "~0.4.6",
"apply-transform": "~0.1.3",
"rimraf": "~2.2.5",
"cpr": "~0.1.1",
"browserify": "~3.14.1"
},
"keywords": [
"browserify",
"browserify-transform",
"transform",
"swap",
"stub",
"mock",
"substitute",
"test",
"development"
],
"author": {
"name": "Thorsten Lorenz",
"email": "[email protected]",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/browserify-swap/blob/master/LICENSE"
},
"engine": {
"node": ">=0.6"
}
}