-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.43 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": "asciidoctor-emoji",
"version": "0.5.0",
"description": "Asciidoctor Emoji extension",
"main": "dist/node/asciidoctor-emoji.js",
"browser": "dist/browser/asciidoctor-emoji.js",
"files": [
"dist"
],
"scripts": {
"test": "mocha test/**.js",
"lint": "standard src/**.js test/**.js",
"clean": "rm -rf dist/*",
"dist": "npm run clean && npm run dist:browser && npm run dist:node",
"dist:browser": "mkdir -p dist/browser && browserify src/asciidoctor-emoji.js --standalone AsciidoctorEmoji -o dist/browser/asciidoctor-emoji.js",
"dist:node": "mkdir -p dist/node && cp src/**.js dist/node/",
"prepublishOnly": "npm run dist"
},
"devDependencies": {
"@asciidoctor/core": ">=2.2 <4.0",
"browserify": "~17.0",
"chai": "~4.3",
"dirty-chai": "~2.0",
"libnpmpublish": "~6.0",
"mocha": "~10.2",
"pacote": "~13.6",
"standard": "~17.1"
},
"peerDependencies": {
"@asciidoctor/core": ">=2.2 <4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mogztter/asciidoctor-emoji.git"
},
"keywords": [
"asciidoctor",
"emoji",
"javascript",
"extension"
],
"author": "Guillaume Grossetie (https://github.com/mogztter)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mogztter/asciidoctor-emoji/issues"
},
"homepage": "https://github.com/mogztter/asciidoctor-emoji#readme",
"publishConfig": {
"access": "public"
}
}