This repository has been archived by the owner on Oct 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.66 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
50
51
52
53
54
55
{
"name": "argdown-map-maker",
"description": "Tools for making argument maps from Argdown files",
"keywords": [
"argumentation",
"argument mapping",
"Argdown",
"Markdown"
],
"version": "0.5.2",
"license": "MIT",
"main": "lib/src/index.js",
"dependencies": {
"chance": "^1.0.9",
"lodash": "^4.17.4"
},
"peerDependencies": {
"argdown-parser": "^0.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/christianvoigt/argdown-map-maker"
},
"author": {
"name": "Christian Voigt",
"email": "[email protected]"
},
"scripts": {
"deploy": "npm run test && npm run build && npm run version:patch && npm run push",
"build": "npm run clean && npm run build:src",
"build:src": "babel src/ -d lib/src --source-maps --copy-files",
"test": "mocha --compilers js:babel-core/register --colors ./test/*.spec.js",
"prepare": "npm run-script build",
"clean": "rimraf lib/*",
"version:patch": "npm version patch",
"push": "git push --tags origin HEAD:master"
},
"readmeFilename": "Readme.md",
"preferGlobal": false,
"devDependencies": {
"argdown-parser": "^0.8.5",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"chai": "^4.0.2",
"cpx": "^1.5.0",
"eslint": "^3.19.0",
"mocha": "^3.4.2",
"rimraf": "^2.6.1",
"sinon": "^1.17.7",
"source-map-support": "^0.4.11"
}
}