-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
{
"name": "typeco",
"version": "1.0.0",
"description": "A javascript library which allows to check javascript value types at runtime",
"main": "dist/index.js",
"scripts": {
"lint": "$(npm bin)/eslint .",
"prebuild": "npm run lint",
"build": "minify src/ -d dist/",
"prepublish": "npm run build && npm run test",
"test": "$(npm bin)/jest",
"ci": "npm run test && npm run build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/nutboltu/typeco.git"
},
"keywords": [
"type-checker",
"type",
"type check",
"types checker",
"javascript type",
"isArray",
"isObject",
"isNumber",
"isString",
"isDate",
"isRegExp",
"isFunction",
"isBoolean",
"isNull",
"isEmpty",
"isEmptyOrZero"
],
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"babel-minify": "^0.5.0",
"babel-preset-minify": "^0.5.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"husky": "^3.0.0",
"jest": "^24.8.0",
"semantic-release": "^17.2.3"
},
"author": "Farhad Yasir",
"license": "MIT"
}