-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
{
"name": "remarkable-docdown",
"version": "2.0.0",
"description": "Remarkable DocDown is a suite of extensions for Remarkable.",
"main": "dist/index.js",
"scripts": {
"compile": "npm run clean && babel ./src --out-dir ./dist",
"clean": "rm -rf ./dist",
"lint": "eslint --ext .js ./src",
"test": "mocha --compilers js:babel-register"
},
"author": "Jason Emerick <[email protected]>",
"contributors": [
"Justin Michalicek <[email protected]>",
"Daniel Farrell <[email protected]>",
"Wyatt Pultz <[email protected]>"
],
"repository": "",
"license" : "BSD-3-Clause",
"dependencies": {
"csv-parse": "^1.1.7",
"mustache": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.6.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.1.0",
"highlight.js": "^9.7.0",
"mocha": "^3.1.2",
"remarkable": "^1.7.1",
"webpack": "^1.13.3"
}
}