-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
59 lines (59 loc) · 1.43 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": "amperize",
"version": "0.6.1",
"description": "AMP up your plain HTML",
"main": "./lib/amperize",
"scripts": {
"test": "mocha $(find test -name '*.test.js')",
"watch": "mocha --watch $(find test -name '*.test.js')",
"coverage": "nyc npm run test",
"test-travis": "nyc --reporter=lcov npm run test",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">=8.6"
},
"repository": {
"type": "git",
"url": "https://github.com/jbhannah/amperize.git"
},
"keywords": [
"amp",
"html"
],
"author": "Jesse B. Hannah <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jbhannah/amperize/issues"
},
"homepage": "https://github.com/jbhannah/amperize#readme",
"dependencies": {
"async": "^3.0.1",
"domutils": "^2.0.0",
"emits": "^3.0.0",
"htmlparser2": "^4.0.0",
"image-size": "^0.8.1",
"lodash": "^4.17.11",
"probe-image-size": "^5.0.0",
"request": "^2.83.0",
"request-promise": "^4.2.4",
"uuid": "^8.1.0",
"validator": "^13.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"cz-conventional-changelog": "3.2.0",
"mocha": "^7.0.0",
"nock": "^12.0.0",
"nyc": "^15.0.0",
"rewire": "^5.0.0",
"semantic-release": "17.0.8",
"sinon": "^9.0.0",
"sinon-chai": "^3.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}