This repository has been archived by the owner on Oct 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.61 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "aleppo",
"version": "2.0.0",
"description": "General node functions, useful for any project.",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"commit": "git-cz",
"check-cov": "istanbul check-coverage --root coverage --statement 97 --branch 91 --function 98 --line 99",
"report-cov": "cat ./coverage/lcov.info | codecov",
"test": "mocha --compilers js:babel-core/register --require babel-polyfill --recursive test",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- R spec --compilers js:babel-core/register --require babel-polyfill --recursive test",
"prebuild:main": "rimraf lib",
"prebuild:date": "rimraf npm_packages/aleppo.date/index.js",
"prebuild:delay": "rimraf npm_packages/aleppo.delay/index.js",
"prebuild:doo": "rimraf npm_packages/aleppo.doo/index.js",
"prebuild:is": "rimraf npm_packages/aleppo.is/index.js",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --out-dir lib src",
"build:umd": "webpack",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/Jimmy02020/aleppo.git"
},
"keywords": [
"javascript-tools",
"javascript",
"nodejs",
"node",
"node-js",
"nodejs-modules",
"node-modules",
"functions",
"random",
"boolean",
"delay",
"date",
"time"
],
"files": [
"lib",
"README.md"
],
"author": "'Jalal Maskoun<'[email protected]'>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jimmy02020/aleppo/issues"
},
"homepage": "https://github.com/Jimmy02020/aleppo#readme",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-loader": "7.1.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"chai-iterator": "1.1.4",
"codecov.io": "0.1.6",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-plugin-import": "2.2.0",
"ghooks": "2.0.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "3.3.0",
"npm-run-all": "4.0.2",
"rimraf": "2.6.1",
"webpack": "3.0.0"
},
"dependencies": {},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run test && npm run check-cov"
}
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}