-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.36 KB
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
82
83
84
{
"name": "@constantiner/fun-ctional",
"version": "0.6.6",
"description": "The library brings most of the familiar functional techniques (like functional composition) to asynchronous world with shining Promises",
"main": "index.js",
"module": "esm/index.js",
"scripts": {
"test": "node -r esm scripts/unitTest.js",
"lint": "npx eslint '**/*.js'",
"build": "npm run clean && npx rollup -c",
"format": "npx prettier 'src/*.js' --write",
"prepublishOnly": "npm run clean && npm run lint && npm run test && npm run build",
"clean": "node -r esm scripts/clean.js",
"clear_jest": "npx jest --clearCache",
"lint-staged": "lint-staged",
"validate:sourcemaps": "node -r esm scripts/sourcemapsValidator.js",
"test:coverage": "npm test -- --coverage",
"test:watch": "node -r esm scripts/unitTestWatch.js",
"changelog": "node -r esm scripts/generateChangelog.js",
"version": "npm run changelog && git add docs/CHANGELOG.md",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Constantiner/fun-ctional.git"
},
"keywords": [
"JS",
"JavaScript",
"Functional",
"FP",
"Asynchronous",
"Utility",
"Utilities",
"ES6",
"Promise"
],
"author": {
"name": "Konstantin Kovalev",
"email": "constantiner@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Constantiner/fun-ctional/issues"
},
"homepage": "https://github.com/Constantiner/fun-ctional#readme",
"engines": {
"node": ">=7.6",
"npm": ">=5.2.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@constantiner/resolve-node-configs-hierarchy": "^0.4.3",
"@types/jest": "^24.0.18",
"babel-jest": "^24.9.0",
"date-fns": "^2.4.1",
"del": "^5.1.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-unicorn": "^12.0.2",
"esm": "^3.2.25",
"globby": "^10.0.1",
"husky": "^3.0.8",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"rollup": "^1.23.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-prettier": "^0.6.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^6.0.3",
"sourcemap-validator": "^2.1.0"
},
"dependencies": {},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}