-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 898 Bytes
/
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
{
"name": "array-if-then-else",
"version": "0.1.0",
"description": "If a specific value is in an Array Then it returns a value - Else it returns a different value",
"license": "MIT",
"repository": "evangeloszotos/array-if-then-else",
"author": {
"name": "Evangelos Zotos",
"url": "https://github.com/evangeloszotos"
},
"files":["lib/**/*"],
"main": "lib/index.js",
"scripts": {
"prepare": "npm run build",
"prepublishOnly" : "npm test",
"build": "tsc -p tsconfig.prod.json",
"build:dev": "tsc -p tsconfig.json",
"test": "jest"
},
"dependencies": {
"is-function": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.4"
},
"keywords": [
"array",
"if",
"then",
"else",
"array some",
"some",
"array condition",
"args",
"arg",
"array analysis",
"callback"
]
}