forked from popeindustries/simpler-browser-require
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 726 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "simpler-browser-require",
"description": "An even simpler, node.js-like require() for the browser.",
"version": "1.0.0",
"author": "popeindustries <alex@pope-industries.com>",
"keywords": ["javascript", "modules", "require", "browser"],
"dependencies": {},
"devDependencies": {
"mocha": "*",
"should": "3.3.2",
"uglify-js": "2.4.23"
},
"main": "require.js",
"scripts": {
"test": "mocha --reporter spec --require should",
"compress": "uglifyjs ./require.js -o ./require.min.js"
},
"repository": "git://github.com/popeindustries/simpler-browser-require.git",
"readmefile": "README.md",
"readme": "A simple, node.js-like require() for the browser.",
"license": "MIT"
}