-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "array.find",
"version": "1.0.9",
"description": "Array.prototype.find polyfill for ES5 versions and lower.",
"main": "index.js",
"scripts": {
"test": "mocha",
"dist": "npm run clean:dist && npm run uglify:js",
"clean:dist": "rm -rf dist && mkdir dist",
"uglify:js": "./node_modules/uglify-js/bin/uglifyjs ./src/array-find-polyfill.js -c -m -o ./dist/array-find-polyfill.min.js",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"cover": "istanbul cover _mocha"
},
"repository": "https://github.com/vovkabelov/array.find.git",
"keywords": [
"array",
"find",
"polyfill",
"js",
"ES6",
"ES5"
],
"files": [
"src/*.js",
"dist/*.js",
"index.js",
"LICENSE",
"README.MD"
],
"author": "Vladimir Belov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vovkabelov/array.find/issues"
},
"homepage": "https://github.com/vovkabelov/array.find",
"devDependencies": {
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"uglify-js": "^3.1.9"
},
"private": false
}