-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.13 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
63
{
"name": "esmeta",
"version": "0.1.0",
"description": "Handy function to handle import.meta",
"scripts": {
"lint": "eslint --ext js,md .",
"test": "ava",
"precommit": "lint-staged",
"prepush": "ava"
},
"dependencies": {
"is-main": "^0.2.0",
"resolve-from": "^4.0.0"
},
"devDependencies": {
"ava": "^1.0.0-beta.4",
"eslint": "^4.19.1",
"eslint-config-concise": "^0.24.0",
"eslint-config-concise-ava": "^0.23.0",
"eslint-config-concise-esnext": "^0.24.1",
"esm": "^3.0.28",
"husky": "^0.14.3",
"lint-staged": "^7.0.5",
"preslint": "^0.23.1"
},
"repository": "ratson/esmeta",
"license": "MIT",
"engines": {
"node": ">= 9"
},
"files": [
"*.md",
"index.js"
],
"keywords": [
"import.meta",
"import",
"meta",
"require",
"main",
"module",
"__filename",
"__dirname"
],
"ava": {
"babel": false,
"require": [
"esm"
]
},
"eslintConfig": {
"extends": [
"concise",
"concise-esnext",
"concise-ava"
]
},
"lint-staged": {
"*.js": [
"preslint --fix --git"
]
}
}