-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.78 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
{
"name": "fjp",
"version": "0.2.4",
"description": "functional javascript playground",
"engines": {
"node": ">=8.11.0"
},
"module": "es/index.js",
"main": "cjs/index.js",
"files": [
"es",
"cjs"
],
"scripts": {
"check": "npm-check -u",
"test": "npm-run-all coverage bench",
"unit": "cross-env BABEL_ENV=cjs ava source/**/*.test.js --verbose",
"bench": "cross-env BABEL_ENV=cjs node ./benchRunner.js",
"coverage": "nyc --reporter=lcov npm run unit && nyc report && codecov -t ecfc093c-04ca-4ec3-aef4-0295a9d02f9e",
"build:es": "cross-env BABEL_ENV=es babel source --out-dir es --ignore **/*.test.js,**/*.bench.js",
"build:cjs": "cross-env BABEL_ENV=cjs babel source --out-dir cjs --ignore **/*.test.js,**/*.bench.js",
"build": "npm-run-all coverage clean build:*",
"readme": "node doc/docs.js",
"clean": "prettier --write --config .prettierrc \"source/**/*.js\" && eslint -c .eslintrc --fix --color --ignore-path .eslintignore \"source/**/*.js\"",
"release:first": "npm run build && npm run readme && standard-version --first-release",
"release": "npm-run-all build readme",
"release:auto": "npm run release && standard-version --no-verify && git push --follow-tags origin master && npm publish",
"release:major": "npm run release && standard-version --no-verify --release-as major && git push --follow-tags origin master && npm publish",
"release:minor": "npm run release && standard-version --no-verify --release-as minor && git push --follow-tags origin master && npm publish",
"release:patch": "npm run release && standard-version --no-verify --release-as patch && git push --follow-tags origin master && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/belsrc/fjp.git"
},
"bugs": {
"url": "https://github.com/belsrc/fjp/issues"
},
"author": "bryan@bryanckizer.com",
"license": "MIT",
"devDependencies": {
"ava": "0.25.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-plugin-annotate-pure-calls": "0.4.0",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"benchmark": "2.1.4",
"cli-table": "0.3.1",
"codecov": "3.1.0",
"cross-env": "5.2.0",
"eslint": "5.9.0",
"glob": "7.1.3",
"jsdoc-to-markdown": "4.0.1",
"microtime": "2.1.8",
"npm-check": "5.9.0",
"npm-run-all": "4.1.3",
"nyc": "13.1.0",
"prettier": "1.15.2",
"rollup": "0.67.3",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-babili": "3.1.1",
"rollup-plugin-node-resolve": "3.4.0",
"standard-version": "4.4.0"
},
"dependencies": {
"babel-runtime": "6.26.0"
}
}