forked from yiminghe/match-require
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.26 KB
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
{
"name": "match-require",
"version": "2.1.0",
"description": "find require calls from string using regexp",
"keywords": [
"require",
"regexp"
],
"files": [
"lib"
],
"main": "lib/index",
"homepage": "http://github.com/yiminghe/match-require",
"author": {
"name": "yiminghe@gmail.com"
},
"repository": {
"type": "git",
"url": "git@github.com:yiminghe/match-require.git"
},
"bugs": {
"url": "http://github.com/yiminghe/match-require/issues"
},
"licenses": "MIT",
"config": {
"port": 8888
},
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"test": "jest",
"cover": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint src",
"pub": "npm run build && npm publish && rm -rf lib && git push origin"
},
"precommit": [
"lint"
],
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-plugin-add-module-exports": "~0.1.2",
"babel-preset-es2015-ie": "^6.6.2",
"babel-preset-stage-0": "6.5.x",
"eslint": "~0.24.0",
"coveralls": "^2.12.0",
"jest": "^19.0.2"
},
"babel": {
"presets": [
"es2015-ie",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"dependencies": {
"uuid": "^3.0.0"
}
}