This repository has been archived by the owner on Nov 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
56
57
58
59
60
61
62
63
{
"name": "mos-plugin-example",
"version": "1.1.2",
"description": "A mos plugin that combines example code files with their output",
"files": [
"src/",
"dist/"
],
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test-es5": "mocha --compilers js:babel-register && npm run lint",
"test": "npm run test-es5 && node ../mos/bin/mos.js test",
"lint": "eslint src/**/*.js",
"cover": "istanbul cover -x \"**/*.spec.js\" node_modules/mocha/bin/_mocha --report lcovonly -- --compilers js:babel-register -R spec",
"md": "node ../mos/bin/mos.js",
"compile": "babel src --out-dir dist",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/mosjs/mos/tree/master/packages/mos-plugin-example"
},
"keywords": [
"mos-plugin",
"example",
"demo",
"markdown"
],
"author": {
"name": "Zoltan Kochan",
"email": "zoltan.kochan@gmail.com",
"url": "http://kochan.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mosjs/mos/issues"
},
"homepage": "https://github.com/mosjs/mos/tree/master/packages/mos-plugin-example#readme",
"dependencies": {
"babel-runtime": "^6.9.0",
"codemo": "^0.2.1",
"independent": "^0.2.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-register": "^6.23.0",
"chai": "^3.4.1",
"eslint": "^2.13.1",
"eslint-config-standard": "^5.3.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"istanbul": "^0.4.2",
"mocha": "^2.3.4"
},
"engines": {
"node": ">=4"
}
}