-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "@drag13/when-do",
"version": "1.1.3",
"description": "Small function that can be used instead if-then statement in functional style programming with JavaScript",
"main": "./dist/index.min.js",
"types": "./dts/index.d.ts",
"files": [
"dist",
"dts",
"src",
"test"
],
"scripts": {
"test": "mocha --reporter spec",
"cover": "node ./node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
"build": "uglifyjs ./src/index.js --compress --mangle --output ./dist/index.min.js",
"preversion": "npm run test",
"version": "npm run build",
"postversion": "git add . && git push --no-verify && git push --tags --no-verify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Drag13/WhenDo.git"
},
"keywords": [
"ifthen",
"ifthenelse",
"functional programming",
"functional composition"
],
"author": "drag13 <qwark@list.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Drag13/WhenDo/issues"
},
"homepage": "https://github.com/Drag13/WhenDo#readme",
"engines": {
"node": ">=4.2.4"
},
"dependencies": {},
"devDependencies": {
"handlebars": "^4.7.7",
"chai": "^4.3.4",
"chai-spies": "^1.0.0",
"coveralls": "^3.1.0",
"istanbul": "^0.4.5",
"mocha": "^8.4.0",
"uglify-es": "^3.3.9"
}
}