-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "gatsby-remark-highlights",
"version": "1.3.4",
"description": "Adds syntax highlighting to code blocks at build time using Atom Highlights",
"main": "index.js",
"author": "Amit Patra <amit.patra@msn.com>",
"license": "MIT",
"private": false,
"repository": "git@github.com:amitpatra/gatsby-remark-highlights.git",
"keywords": [
"gatsby",
"gatsby-plugin",
"highlight",
"atom",
"atom highlights",
"remark"
],
"dependencies": {
"eslint-plugin-jest": "^21.21.0",
"highlights": "^3.1.1",
"lodash": "^4.17.10",
"parse-numeric-range": "^0.0.2",
"simple-string-to-json": "^0.0.1",
"unist-util-visit": "^1.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"cross-env": "^5.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.5.0",
"language-hugo": "mattstratton/language-hugo",
"language-rust": "^0.4.12",
"remark": "^9.0.0"
},
"scripts": {
"jest": "jest .",
"lint": "eslint --ignore-path .gitignore .",
"test": "npm run lint && npm run jest",
"build": "babel src --out-dir . --ignore __tests__",
"watch": "babel -w src --out-dir . --ignore __tests__",
"prepublish": "cross-env NODE_ENV=production npm run build"
}
}