-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 2.37 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
{
"name": "jsdoc-export-default-interop",
"version": "0.3.0",
"description": "jsdoc-export-default-interop",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean:dist && babel lib -d dist",
"build:dev": "nodemon -w lib --exec \"npm run clean:dist && babel lib -d dist\"",
"clean": "npm run clean:dist && npm run clean:coverage",
"clean:dist": "rimraf dist",
"clean:coverage": "rimraf coverage",
"coverage": "npm run clean:coverage && babel-node node_modules/.bin/isparta cover --report lcov --report text --report html test/index.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"dev": "nodemon --verbose -w lib -w test --exec \"npm run -s lint && npm run build && npm run -s test:dev\"",
"docs": "jsdoc2md --conf docs/conf.json --src \"lib/**/*.js\" -t docs/README.md.hbs -d 2 --partial \"./docs/partials/**/*.hbs\" --separators -l JavaScript > README.md",
"lint": "eslint lib",
"precommit": "npm run docs",
"prepublish": "in-publish && npm run build && npm run docs || not-in-publish",
"test": "babel-node test/index.js",
"test:dev": "npm run -s test | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathanmarks/jsdoc-export-default-interop.git"
},
"keywords": [],
"author": "Nathan Marks <[email protected]> (http://nathanmarks.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nathanmarks/jsdoc-export-default-interop/issues"
},
"homepage": "https://github.com/nathanmarks/jsdoc-export-default-interop#readme",
"devDependencies": {
"app-module-path": "^1.0.5",
"babel-cli": "^6.4.5",
"babel-eslint": "^5.0.0-beta6",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"blue-tape": "^0.1.11",
"bluebird": "^3.1.4",
"coveralls": "^2.11.6",
"ddata": "github:nathanmarks/ddata#personal-modifications",
"eslint": "^1.10.3",
"isparta": "^4.0.0",
"jsdoc": "github:jsdoc3/jsdoc#master",
"jsdoc-api": "^1.0.5",
"jsdoc-parse": "github:nathanmarks/jsdoc-parse#es6-customizations",
"jsdoc-to-markdown": "^1.3.3",
"lodash": "^4.0.1",
"rimraf": "^2.5.1",
"tap-spec": "^4.1.1",
"tap-xunit": "^1.3.1",
"tape": "^4.4.0"
},
"dependencies": {
"in-publish": "^2.0.0",
"lodash": "^4.0.1"
}
}