-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.62 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
{
"name": "windowify",
"version": "0.3.0",
"author": "Rubén Norte <[email protected]>",
"description": "Allows regular JavaScript files to expose global variables and functions when bundled with Browserify",
"license": "MIT",
"main": "src/index.js",
"keywords": [
"browserify",
"browserify-transform",
"expose",
"closure",
"scope",
"global",
"globals",
"transform",
"window"
],
"homepage": "https://github.com/rubennorte/windowify",
"bugs": {
"url": "https://github.com/rubennorte/windowify/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rubennorte/windowify.git"
},
"files": [
"src"
],
"scripts": {
"lint:errors": "jshint src test --reporter node_modules/jshint-stylish/stylish.js --verbose",
"lint:style": "jscs src test --verbose",
"lint": "npm run lint:errors && npm run lint:style",
"jasmine": "node test/launch-unit.js",
"pretest": "npm run lint",
"test": "npm run jasmine",
"prepare-release": "npm test",
"release": "mversion -m \"New version: %s\"",
"doc:js": "jsdoc src --destination doc/js --readme README.md --verbose",
"doc": "npm run doc:js"
},
"dependencies": {
"esprima": "^2.2.0",
"estraverse": "^4.1.0",
"minimatch": "^2.0.8",
"through": "^2.3.7",
"transformify": "^0.1.2"
},
"devDependencies": {
"jasmine": "^2.3.1",
"jasmine-spec-reporter": "^2.2.3",
"jscs": "^1.12.0",
"jsdoc": "^3.3.0-beta3",
"jshint": "^2.8.0",
"jshint-stylish": "^1.0.1",
"mversion": "^1.10.0"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=2.0.0"
}
}