-
Notifications
You must be signed in to change notification settings - Fork 171
/
package.json
91 lines (91 loc) · 2.31 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "import-html-entry",
"version": "1.17.0",
"description": "import html and get the exports of entry",
"main": "./lib/index.js",
"module": "./esm/index.js",
"sideEffects": false,
"directories": {
"example": "example"
},
"files": [
"lib",
"esm",
"index.d.ts"
],
"types": "./index.d.ts",
"scripts": {
"lint": "npm test",
"build": "npm run build:lib && npm run build:esm",
"build:test-bundle": "esbuild ./src/index.js --bundle --outfile=./dist/index.js --format=esm",
"build:lib": "rm -fr ./lib && babel ./src --out-dir ./lib --ignore 'src/**/__tests__/**/*.js'",
"build:esm": "rm -fr ./esm && BABEL_ENV=esm babel ./src --out-dir ./esm --ignore 'src/**/__tests__/**/*.js'",
"prepush": "npm run lint",
"prepublishOnly": "npm run build",
"release": "np --no-cleanup --yolo --no-publish --any-branch",
"test": "jest --coverage",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuitos/import-html-entry.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"html",
"importer"
],
"author": "Kuitos",
"license": "MIT",
"bugs": {
"url": "https://github.com/kuitos/import-html-entry/issues"
},
"homepage": "https://github.com/kuitos/import-html-entry#readme",
"browserslist": [
"> 1%",
"last 6 versions",
"not ie <= 8"
],
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.2",
"codecov": "^3.7.0",
"esbuild": "^0.21.5",
"husky": "^1.3.1",
"iconv-lite": "^0.6.2",
"jest": "^24.9.0",
"np": "^5.0.3",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"jest": {
"globals": {
"process.env.NODE_ENV": "test"
},
"testURL": "http://test.com/path/",
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/",
"/dist/"
],
"setupFiles": [
"./test/setup.js"
]
},
"dependencies": {
"@babel/runtime": "^7.7.2"
}
}