This repository was archived by the owner on Dec 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.29 KB
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
{
"name": "utilitiesjs",
"version": "1.0.1",
"description": "Utility functions for front-end JavaScript development.",
"main": "utilities.js",
"module": "utilities.es.js",
"scripts": {
"test": "jasmine",
"banner": "node injectBanner.js",
"esmodule": "node toES6Module.js",
"build": "npm test && node_modules/umd/bin/cli.js utilities src/utilities.js utilities.js -c && npm run esmodule && npm run banner",
"precommit": "pretty-quick --staged"
},
"nyc": {
"exclude": [
"spec/**/*.js"
],
"reporter": "clover",
"report-dir": "coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theZieger/utilitiesjs.git"
},
"keywords": [
"utility",
"inherit",
"toArray",
"client",
"browser",
"umd",
"module",
"es6"
],
"contributors": [
"Daniel Opitz <contact@copynpaste.de> (https://copynpaste.de/)"
],
"files": [
"utilities.js",
"utilities.es.js"
],
"author": "thezieger",
"license": "MIT",
"bugs": {
"url": "https://github.com/theZieger/utilitiesjs/issues"
},
"homepage": "https://github.com/theZieger/utilitiesjs#readme",
"devDependencies": {
"jasmine": "^3.4.0",
"umd": "^3.0.3",
"husky": "^2.4.0",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.0"
}
}