-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
62 lines (62 loc) · 1.4 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
{
"name": "amphora-html",
"version": "6.0.0-7",
"description": "An HTML renderer for component data",
"main": "index.js",
"scripts": {
"test": "npm run eslint && npm run jest -- --coverage --no-cache",
"eslint": "eslint --max-warnings 0 lib test",
"jest": "jest"
},
"dependencies": {
"amphora-fs": "^2.0.0",
"bluebird": "^3.5.0",
"clay-log": "^1.2.0",
"clayutils": "^3.0.0",
"glob": "^7.1.1",
"js-yaml": "^3.8.2",
"lodash": "^4.17.5",
"nymag-fs": "^1.0.1",
"traverse": "^0.6.6"
},
"devDependencies": {
"clayhandlebars": "^5.0.1",
"coveralls": "^3.0.2",
"eslint": "^3.19.0",
"jest": "23.6.0"
},
"peerDependencies": {
"handlebars": "4",
"clayhandlebars": "5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nymag/amphora-html.git"
},
"jest": {
"clearMocks": true,
"restoreMocks": true,
"collectCoverageFrom": [
"<rootDir>/lib/**/*.js"
],
"coverageReporters": [
"lcov",
"text-summary"
],
"moduleFileExtensions": [
"js"
],
"setupFiles": [
"<rootDir>/test/setupFile.js"
],
"moduleNameMapper": {
"\\.(hbs)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nymag/amphora-html/issues"
},
"homepage": "https://github.com/nymag/amphora-html#readme"
}