-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.67 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.67 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
{
"name": "@flaper/markdown",
"version": "1.1.5",
"description": "Markdown for flaper",
"main": "dist/index.js",
"scripts": {
"pretest": "jshint .",
"test": "mocha",
"compile": "babel src --out-dir dist",
"prepublish": "npm run compile"
},
"typings": "./markdown.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/flaper/markdown.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"@flaper/consts": "^0.2.0",
"lodash": "^4.16.1",
"marked": "^0.3.6",
"sanitize-html": "^1.13.0",
"striptags": "^2.1.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-check-es2015-constants": "^6.8.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.8.0",
"babel-plugin-transform-es2015-block-scoping": "^6.15.0",
"babel-plugin-transform-es2015-classes": "^6.14.0",
"babel-plugin-transform-es2015-computed-properties": "^6.8.0",
"babel-plugin-transform-es2015-destructuring": "^6.8.0",
"babel-plugin-transform-es2015-for-of": "^6.8.0",
"babel-plugin-transform-es2015-literals": "^6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.8.0",
"babel-plugin-transform-es2015-object-super": "^6.8.0",
"babel-plugin-transform-es2015-parameters": "^6.8.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.8.0",
"babel-plugin-transform-es2015-spread": "^6.8.0",
"babel-plugin-transform-es2015-template-literals": "^6.8.0",
"chai": "^3.5.0",
"jshint": "^2.9.3",
"mocha": "^3.0.2"
}
}