forked from halbgut/showdown-footnotes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 786 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 786 Bytes
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
{
"name": "@webdesigndecal/showdown-footnotes",
"description": "A simple footnotes implementation for Showdown.",
"license": "MIT",
"repository": "https://github.com/webdesigndecal/showdown-footnotes.git",
"version": "2.1.3",
"main": "dist/index.js",
"dependencies": {
"showdown": "^1.4.1"
},
"devDependencies": {
"ava": "^0.11.0",
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"watch": "^0.18.0"
},
"scripts": {
"test": "ava",
"watch-test": "watch 'npm run test'",
"build": "babel --presets babel-preset-es2015 src --out-dir dist",
"watch-build": "watch 'npm run build -- --source-maps inline -w' src"
},
"author": "Kriegslustig <npm@ls7.ch>",
"contributors": [
"Web Design DeCal"
],
"private": false
}