UNPKG

2.39 kBJSONView Raw
1{
2 "name": "require-hacker",
3 "version": "2.0.0",
4 "description": "Provides a hooking mechanism for Node.js require() calls",
5 "main": "babel-transpiled-modules/index.js",
6 "dependencies": {
7 "babel-runtime": "^5.6.20",
8 "colors": "^1.1.2"
9 },
10 "devDependencies": {
11 "async": "^1.3.0",
12 "babel": "^5.6.14",
13 "babel-core": "^5.6.15",
14 "babel-loader": "^5.3.1",
15 "chai": "^3.0.0",
16 "coveralls": "^2.11.2",
17 "enhanced-resolve": "^0.8.6",
18 "esprima": "^2.4.1",
19 "html-webpack-plugin": "^1.6.0",
20 "istanbul": "^0.3.17",
21 "json-loader": "^0.5.2",
22 "minimist": "^1.1.1",
23 "mkdirp": "^0.5.1",
24 "mocha": "^2.2.5",
25 "node-libs-browser": "^0.5.2",
26 "npm-run-all": "^1.2.6",
27 "rimraf": "^2.4.2",
28 "sane": "^1.1.3",
29 "tapable": "^0.1.9",
30 "uglify-js": "^2.4.23",
31 "watchpack": "^0.2.8",
32 "webpack": "^1.10.1",
33 "webpack-core": "^0.6.5",
34 "webpack-merge": "^0.1.2"
35 },
36 "scripts": {
37 "test": "mocha --compilers js:babel/register-without-polyfill --colors --bail --reporter spec test/ --recursive",
38 "test-coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel/register-without-polyfill --colors --reporter dot test/ --recursive",
39 "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --compilers js:babel/register --colors --reporter spec test/ --recursive",
40 "gh-pages": "webpack --action=gh-pages --colors --config ./config",
41 "deploy-gh-pages": "TARGET=gh-pages node ./config/deploy-gh-pages.js",
42 "clean-for-build": "rimraf ./babel-transpiled-modules/**/*",
43 "build-modules": "babel ./source --optional runtime --out-dir ./babel-transpiled-modules --source-maps",
44 "build": "npm-run-all clean-for-build build-modules",
45 "commit-new-build": "git commit --all --message=\"Update build\"",
46 "tryout": "npm-run-all test build pack",
47 "pack": "npm pack",
48 "watch": "babel scripts/watch.js | node",
49 "prepublish": "npm-run-all test build"
50 },
51 "repository": {
52 "type": "git",
53 "url": "git+https://github.com/halt-hammerzeit/require-hacker.git"
54 },
55 "keywords": [
56 "require"
57 ],
58 "author": "Nikolay Kuchumov <kuchumovn@gmail.com>",
59 "license": "MIT",
60 "bugs": {
61 "url": "https://github.com/halt-hammerzeit/require-hacker/issues"
62 },
63 "homepage": "https://github.com/halt-hammerzeit/require-hacker#readme"
64}