-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "replace-require",
"version": "1.1.2",
"description": "Replace require statements with import statements",
"bin": "./bin/replace-require",
"keywords": [
"import",
"require",
"replace"
],
"homepage": "https://github.com/duereg/replace-require",
"bugs": "https://github.com/duereg/replace-require/issues",
"author": {
"name": "Matt Blair",
"email": "",
"url": "https://github.com/duereg"
},
"main": "./lib/replace-require.js",
"repository": {
"type": "git",
"url": "https://github.com/duereg/replace-require.git"
},
"scripts": {
"build": "node_modules/.bin/gulp coffee",
"prepublishOnly": "npm run build",
"test": "node_modules/.bin/gulp test"
},
"dependencies": {
"minimist": "^1.2.0",
"verbalize": "^0.2.0",
"walk": "^2.3.14"
},
"devDependencies": {
"chai": "^4.2.0",
"coffee-script": "^1.12.7",
"gulp": "^3.9.1",
"gulp-coffee": "^2.3.2",
"gulp-istanbul": "^1.1.3",
"gulp-mocha": "^2.2.0",
"gulp-plumber": "^1.2.1",
"gulp-util": "^3.0.8",
"mocha": "^5.2.0",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0"
},
"engines": {
"node": ">=6",
"npm": ">=5"
},
"license": "MIT"
}