-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.47 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
94
95
{
"name": "vertibar",
"version": "0.0.33",
"description": "Minimalistic JS utils library with a human face",
"scripts": {
"lint": "eslint ./src && eslint ./tests",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build:umd": "webpack",
"build:module": "cross-env BABEL_ENV=es babel src --out-dir dist/module",
"build": "npm-run-all clean build:*",
"dev": "webpack --progress --colors --watch",
"test": "nyc ava",
"postbuild": "standard-version && git remote add origin-pages https://${GITHUB_TOKEN}@github.com/AndrewKovalenko/vertibar.git > /dev/null 2>&1 && git push --tags --set-upstream origin-pages master",
"install": "npm build",
"run-dev": "webpack --progress --colors --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/AndrewKovalenko/vertibar.git"
},
"files": [
"dist/**/*"
],
"keywords": [
"utils",
"array extensions",
"object extensions",
"tail",
"head",
"deepCopy",
"throttle",
"debounce"
],
"engines": {
"node": ">= 6.9.2"
},
"ava": {
"require": "babel-register",
"failFast": true,
"concurrency": 5,
"verbose": true
},
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.1.1",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-istanbul": "^4.1.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.2.1",
"npm-run-all": "^4.1.2",
"nyc": "10.3.2",
"sinon": "^4.2.2",
"standard-version": "^4.3.0",
"uglify-js": "^2.8.0",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.5.1"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 85,
"statements": 85,
"functions": 85,
"branches": 85,
"exclude": [
"tests/**/*.test.js",
"dist/**/*",
"node_modules/**/*",
"test-coverage/**/*",
"webpack.config.js"
],
"reporter": [
"lcov",
"text"
],
"cache": true,
"all": true,
"report-dir": "./test-coverage"
},
"main": "./dist/umd/vertibar.js",
"module": "./dist/module/index.js",
"author": "Andrew Kovalenko",
"license": "MIT"
}