-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.19 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": "babel-plugin-optional-require",
"version": "0.3.1",
"description": "Babel plugin to transpile object styles to template literal",
"main": "index.js",
"files": [
"index.js"
],
"repository": "[email protected]:satya164/babel-plugin-optional-require.git",
"author": "Satyajit Sahoo <[email protected]>",
"license": "MIT",
"keywords": [
"babel-plugin",
"babel",
"module",
"require",
"import"
],
"scripts": {
"lint": "eslint .",
"flow": "flow",
"test": "jest",
"release": "release-it"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"babel-test": "^0.1.1",
"conventional-changelog-cli": "^2.0.5",
"dedent": "^0.7.0",
"eslint": "^5.4.0",
"eslint-config-satya164": "^2.0.1",
"flow-bin": "^0.79.1",
"jest": "^23.5.0",
"jest-file-snapshot": "^0.3.2",
"prettier": "^1.14.2",
"release-it": "^7.6.1"
},
"dependencies": {
"is-builtin-module": "^2.0.0",
"resolve-from": "^4.0.0"
},
"jest": {
"testEnvironment": "node",
"watchPathIgnorePatterns": [
"__fixtures__\\/[^/]+\\/(output|error)\\.js"
]
}
}