-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "babel-plugin-try-import",
"version": "0.0.3",
"description": "try import module",
"keywords": [
"babel",
"babel-plugin",
"import",
"try import"
],
"main": "./lib/index.js",
"author": "laincarl <1047972853@qq.com>",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf coverage lib",
"build": "babel src -d lib",
"build-examples": "babel example -d built-examples",
"lint": "eslint src test",
"prepare": "npm run clean && npm run build && npm run build-examples",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/helper-plugin-test-runner": "^7.8.0",
"babel-jest": "^24.9.0",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.15.0",
"jest": "^24.9.0",
"rimraf": "^2.5.4"
},
"jest": {
"modulePathIgnorePatterns": [
"/test/fixtures/"
],
"testEnvironment": "node",
"testRegex": "./test/.+\\.js$"
}
}