-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.46 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
{
"name": "hitext-prismjs",
"version": "1.1.0",
"description": "Prism.js adapter for HiText",
"keywords": [
"text",
"code",
"decoration",
"highlight",
"hitext",
"prism",
"prismjs",
"source"
],
"license": "MIT",
"repository": "hitext/prismjs",
"homepage": "https://github.com/hitext/prismjs",
"bugs": {
"url": "https://github.com/hitext/prismjs/issues"
},
"author": "Roman Dvornov <rdvornov@gmail.com> (https://github.com/lahmatiy)",
"maintainers": [
{
"name": "Roman Dvornov",
"email": "rdvornov@gmail.com",
"github-username": "lahmatiy"
}
],
"main": "./src",
"scripts": {
"lint": "eslint src test",
"lint-and-test": "npm run lint && npm test",
"test": "mocha --reporter ${REPORTER:-progress}",
"build": "rollup --config",
"prepublishOnly": "npm run build",
"coverage": "nyc npm test",
"travis": "nyc npm run lint-and-test && npm run coveralls",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"peerDependencies": {
"prismjs": "^1.15.0",
"hitext": "^1.0.0-beta.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"coveralls": "^3.0.11",
"eslint": "^6.5.1",
"hitext": "^1.0.0-beta.1",
"mocha": "^6.2.3",
"nyc": "^14.1.0",
"prismjs": "^1.15.0",
"rollup": "^1.32.1",
"rollup-plugin-terser": "^5.3.0"
},
"files": [
"dist",
"src"
]
}