-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.12 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "love-notes",
"version": "0.1.1",
"description": "A literate programming tangler and weaver",
"main": "dist/index.js",
"jsnext:main": "dist/index.mjs",
"scripts": {
"start": "npm run watch",
"build": "rollup -c",
"watch": "rollup -c -w",
"examples:tangler": "DEBUG=*:log node examples/tangler.js",
"examples:weaver": "DEBUG=*:log node examples/weaver.js",
"examples:readme": "DEBUG=*:log node examples/readme-example.js ",
"test": "ava -t ./test/*.spec.js | tnyan",
"test:watch": "DEBUG=*.spec:log ava -w ./test/*.spec.js",
"prepublish": "npm test"
},
"author": "Ada Lovecraft",
"license": "WTFPL",
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.24.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.2.1",
"babel-preset-latest": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.23.0",
"babelrc-rollup": "^3.0.0",
"eslint": "^3.18.0",
"eslint-plugin-ava": "^4.2.0",
"fs-jetpack": "^0.12.0",
"fuse-box": "^1.3.128",
"nodemon": "^1.11.0",
"npm": "^4.4.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-includepaths": "^0.2.2",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-watch": "^3.2.2",
"tap-nyan": "^1.1.0"
},
"dependencies": {
"debug": "^2.6.3",
"fmt-obj": "^1.3.0",
"fs-jetpack": "^0.12.0",
"markdown-it": "^8.3.1",
"remark": "^7.0.0",
"remark-html": "^6.0.0",
"remark-parse": "^3.0.0",
"unified": "^6.1.1",
"unist-builder": "^1.0.2",
"unist-util-parents": "^0.1.2",
"unist-util-select": "^1.5.0",
"unist-util-visit": "^1.1.1",
"vfile-reporter": "^3.0.0"
},
"babel": {
"presets": [
"env",
"stage-0"
]
},
"ava": {
"babel": "inherit",
"failFast": true,
"tap": true,
"source": [
"**/*.{md,js}",
"!node_modules/**/*",
"!test/**/*.html",
"!dist/**/*"
],
"require": [
"babel-polyfill",
"babel-register"
]
}
}