-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.61 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "resolve-mjs",
"version": "2.2.2",
"description": "Import ecmascript modules using legacy `require` resolution algorithm",
"main": "index.mjs",
"engines": {
"node": "12.x"
},
"engineStrict": true,
"scripts": {
"test:esm": "NODE_PATH=test-module node test-module/spec.mjs",
"test:cjs": "NODE_PATH=test-commonjs node test-commonjs/spec.mjs",
"test:babel": "NODE_PATH=test-babel node --loader ./babel.mjs test-babel/spec.mjs",
"test": "npm run test:esm && npm run test:cjs && npm run test:babel",
"lint": "eslint --ext .js,.mjs,.json,.cjs ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/finboxio/resolve-mjs.git"
},
"keywords": [
"import",
"ecmascript",
"module",
"node_path",
"require",
"mjs",
"commonjs",
"babel",
"esm"
],
"author": "finboxio",
"license": "MIT",
"bugs": {
"url": "https://github.com/finboxio/resolve-mjs/issues"
},
"homepage": "https://github.com/finboxio/resolve-mjs#readme",
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-json": "1.4.0",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.0",
"husky": "2.4.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"dependencies": {
"@babel/core": "7.4.5",
"@babel/register": "7.4.4",
"find-package-json": "1.2.0",
"lodash.escaperegexp": "4.1.2",
"mkfifo": "2.0.1",
"source-map-support": "0.5.12"
}
}