-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "clayutils",
"version": "3.0.0",
"description": "A collection of utility functions for working with Clay.",
"main": "index.js",
"browser": "dist/index.js",
"scripts": {
"generate-readme": "node docs/generate-readme.js && git add README.md",
"lint": "eslint lib test index.js index.test.js",
"test-local": "istanbul cover _mocha -x dist/**",
"test": "npm run lint && istanbul cover _mocha -x dist/** --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"build": "webpack --mode development",
"watch": "webpack --mode development -w",
"prepublishOnly": "webpack --mode production"
},
"pre-commit": [
"generate-readme"
],
"repository": {
"type": "git",
"url": "git+https://github.com/clay/clayutils.git"
},
"keywords": [
"clay"
],
"author": "New York Media",
"license": "MIT",
"bugs": {
"url": "https://github.com/clay/clayutils/issues"
},
"files": [
"/dist",
"/lib"
],
"homepage": "https://github.com/clay/clayutils#readme",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babel-loader": "^8.0.6",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"coveralls": "^3.0.2",
"eslint": "^4.18.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"pre-commit": "^1.2.2",
"sinon": "^2.1.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"glob": "^7.1.1",
"lodash": "^4.17.4",
"nymag-fs": "^1.0.0"
},
"peerDependencies": {
"handlebars": "4"
}
}