-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.31 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.31 KB
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
{
"name": "@reallyland/esm",
"version": "0.0.8",
"description": "A collection of node modules re-exported as ES Modules",
"keywords": [
"esm",
"esmodules",
"es-modules",
"es-module"
],
"homepage": "https://github.com/reallyland/esm#readme",
"bugs": {
"url": "https://github.com/reallyland/esm/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reallyland/esm.git"
},
"license": "MIT",
"author": {
"name": "Rong Sen Ng (motss)",
"email": "wes.ngrongsen@gmail.com",
"url": "https://github.com/motss"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./dist/*": {
"import": "./dist/*",
"default": "./dist/*"
},
"./clone-deep": {
"import": "./dist/clone-deep.js",
"default": "./dist/clone-deep.js"
},
"./parse5": {
"import": "./dist/parse5.js",
"default": "./dist/parse5.js"
},
"./prismjs": {
"import": "./dist/prismjs.js",
"default": "./dist/prismjs.js"
}
},
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*.d.ts.map",
"dist/**/*.d.ts",
"dist/**/*.js.map",
"dist/**/*.js",
"!**/*demo*/**/*.*",
"!**/*test*/**/*.*"
],
"scripts": {
"build": "npm run clean && rollup --config ./rollup.config.js",
"clean": "sh $(npm root)/@reallyland/tools/cleanup.sh",
"postinstall": "FILE=\"$(npm root)/@reallyland/tools/postinstall.sh\"; if [ -f \"$FILE\" ]; then sh \"$FILE\"; fi",
"lint-commit": "sh $(npm root)/@reallyland/tools/lint-commit.sh",
"pre-commit": "package-check && tsc --noEmit",
"prepublishOnly": "npm run build"
},
"simple-git-hooks": {
"pre-commit": "npm run pre-commit",
"commit-msg": "npm run lint-commit"
},
"devDependencies": {
"@reallyland/tools": "^0.0.7",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/lodash-es": "^4.17.4",
"@types/parse5": "^6.0.0",
"@types/prismjs": "^1.26.0",
"lodash-es": "^4.17.21",
"parse5": "^6.0.1",
"prismjs": "^1.27.0",
"rollup": "^2.52.4",
"rollup-plugin-terser": "^7.0.2"
},
"publishConfig": {
"access": "public"
}
}