-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 886 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
40
{
"name": "requireify",
"version": "1.0.0",
"description": "Browserify plugin to access all modules from browser console",
"main": "index.js",
"scripts": {
"test": "node test/test.js",
"pretest": "npm run hint",
"hint": "jshint --config .jshintrc ."
},
"repository": {
"type": "git",
"url": "https://github.com/johnkpaul/requireify"
},
"keywords": [
"browserify",
"v2",
"js",
"plugin",
"transform"
],
"author": "John K. Paul",
"license": "MIT",
"dependencies": {
"combine-source-map": "~0.2.0",
"detective": "~4.2.0",
"inline-source-map": "~0.2.5",
"innersource": "0.0.2",
"through": "~2.2.7"
},
"devDependencies": {
"jshint": "~2.1.11",
"convert-source-map": "~0.2.6",
"coffeeify": "~0.5.2",
"browserify": ">=3.0.0"
},
"peerDependencies": {
"browserify": ">=3.0.0"
}
}