-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "requirey",
"version": "2.2.0",
"description": "extending require to work with multiple versions of modules",
"main": "dist/index.js",
"scripts": {
"test": "jest && npm run integration",
"build": "babel src --source-maps --out-dir dist --ignore '**/*.test.js'",
"prepublish": "npm run build",
"integration": "npm run build && mocha integration/integration.js --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debopamsengupta/requirey.git"
},
"keywords": [
"npm",
"multi-version",
"package",
"dependency-manager",
"require"
],
"author": "debopamsengupta",
"license": "MIT",
"files": [
"dist",
"src"
],
"bugs": {
"url": "https://github.com/debopamsengupta/requirey/issues"
},
"homepage": "https://github.com/debopamsengupta/requirey#readme",
"dependencies": {
"npm-install-version": "^6.0.2",
"semver": "^5.3.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.3.3",
"chai": "^3.5.0",
"jest": "^19.0.2",
"mocha": "^3.3.0"
}
}