This repository has been archived by the owner on Nov 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.89 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": "fjl-error-throwing",
"version": "0.7.9",
"description": "Error throwing helpers for quickly throwing errors when a value doesn't match a type.",
"main": "dist/cjs/fjl.errorThrowing.js",
"module": "dist/es6-module/fjl.errorThrowing.js",
"directories": {
"test": "tests"
},
"scripts": {
"pre-publish": "npm test && npm run build && npm run build-docs",
"build": "gulp clean && gulp build && npm run test-builds",
"build-docs": "gulp jsdoc",
"test-builds": "mocha tests/**/*-test-*.js --plugins babel-plugin-add-module-exports --require babel-register",
"test": "mocha tests/*-test.js --plugins babel-plugin-add-module-exports --require babel-register"
},
"keywords": [
"error-throwing",
"functional",
"error-handling"
],
"author": "Ely De La Cruz <[email protected]>",
"license": "BSD",
"devDependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chalk": "^2.1.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-better-rollup": "^1.1.1",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^4.0.0",
"gulp-fncallback": "^2.0.2",
"gulp-header": "^1.8.9",
"gulp-jsdoc3": "^1.0.1",
"gulp-mocha": "^4.3.1",
"gulp-uglify": "^3.0.0",
"lazypipe": "^1.0.1",
"mocha": "^4.0.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"yargs": "^9.0.1"
},
"dependencies": {
"fjl": "0.25.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elycruz/fjl-error-throwing.git"
},
"bugs": {
"url": "https://github.com/elycruz/fjl-error-throwing/issues"
},
"homepage": "https://github.com/elycruz/fjl-error-throwing#readme"
}