-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"name": "magicpen-prism",
"version": "5.0.1",
"description": "Add syntax highlighting support to magicpen via prism.js",
"repository": {
"type": "git",
"url": "https://github.com/unexpectedjs/magicpen-prism.git"
},
"main": "lib/magicPenPrism.js",
"author": "Andreas Lind <[email protected]>",
"devDependencies": {
"browserify": "^17.0.0",
"bundle-collapser": "^1.3.0",
"coveralls": "^3.0.3",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"magicpen": "^6.2.1",
"mocha": "^8.3.0",
"nyc": "^15.0.0",
"prettier": "~2.5.0",
"unexpected": "^12.0.0"
},
"files": [
"lib",
"magicPenPrism.min.js"
],
"scripts": {
"test": "mocha",
"lint": "eslint . && prettier --check '**/*.js'",
"test:ci": "npm run coverage",
"prepublish": "browserify -p bundle-collapser/plugin -e lib/magicPenPrism -s magicPenPrism > magicPenPrism.min.js",
"coverage": "NODE_ENV=development nyc --reporter=lcov --reporter=text --all -- npm test && echo google-chrome coverage/lcov-report/index.html"
},
"dependencies": {
"prismjs": "^1.21.0"
},
"license": "BSD-3-Clause",
"nyc": {
"include": [
"lib/**"
]
}
}