-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.87 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "marky-marked",
"version": "5.0.3",
"description": "A <textarea> so sweet you'll be feeling good vibrations.",
"main": "dist/marky-marked.umd.js",
"module": "dist/marky-marked.js",
"format": "es6",
"engines": {
"node": "^8.0.0"
},
"scripts": {
"test": "npm run lint:js:test && karma start",
"build": "concurrently npm:lint:* && concurrently npm:build:*",
"lint:js:test": "eslint ./test/**/*.spec.js",
"lint:js:src": "eslint ./src/**/*.js",
"lint:css:src": "stylelint styles/**/*.css -f string",
"lint-fix": "esw --fix --cache -w src test",
"build:base": "rollup -c 'rollup.config.base.js'",
"build:umd": "rollup -c 'rollup.config.umd.js'",
"build:min": "rollup -c 'rollup.config.min.js'",
"build:styles": "postcss 'styles/marky-marked.css' -c -o 'dist/marky-marked.css'",
"vendor:tape": "browserify node_modules/tape-catch/index.js --standalone test -o vendor/tape.js",
"vendor:sinon": "browserify node_modules/sinon/lib/sinon.js --standalone sinon -o vendor/sinon.js",
"postinstall": "rm -rf vendor; mkdir -p vendor; concurrently npm:vendor:*"
},
"repository": {
"type": "git",
"url": "https://www.github.com/patrickfatrick/marky-marked"
},
"keywords": [
"Javascript",
"textarea",
"Markdown",
"content editor",
"WYSIWYG"
],
"author": "Patrick Fricano <patrick.fricano@icloud.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^10.0.1",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.3.3",
"browserify": "^14.3.0",
"codecov": "^3.1.0",
"concurrently": "^4.1.0",
"cssnano": "^4.1.8",
"eslint": "^5.11.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-watch": "^4.0.2",
"faucet": "^0.0.1",
"font-awesome": "^4.5.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-junit-reporter": "^1.2.0",
"karma-rollup-preprocessor": "^6.1.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-tap": "^4.1.4",
"karma-tap-pretty-reporter": "^4.1.0",
"postcss-cli": "^6.1.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.5.0",
"rollup": "^0.68.2",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^3.0.0",
"sinon": "^7.2.2",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^2.0.0",
"tap-summary": "^4.0.0",
"tape": "^4.6.3",
"tape-catch": "^1.0.6"
},
"dependencies": {
"contra": "^1.9.4",
"harsh": "^1.5.1",
"marked": "^0.5.2"
}
}