This repository was archived by the owner on Oct 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
63
64
65
{
"name": "@saithodev/amp-css",
"version": "1.1.10",
"description": "Provides a binary to compile SCSS files and validate them for AMP.",
"bin": {
"amp-css": "dist/bin/amp-css"
},
"repository": {
"type": "git",
"url": "https://github.com/saitho/amp-css"
},
"author": "Mario Lubenka",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"css",
"scss",
"amp-custom",
"amp-css",
"AMP",
"AMP HTML",
"Accelerated Mobile Pages"
],
"scripts": {
"build": "tsc && mv ./dist/bin/amp-css.js ./dist/bin/amp-css",
"docs:build": "typedoc --entryPointStrategy expand src && touch ./docs/.nojekyll",
"test": "jest --detectOpenHandles --coverage --verbose",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"typedoc": {
"out": "docs",
"tsconfig": "tsconfig.json"
},
"dependencies": {
"amphtml-validator": "^1.0.35",
"meow": "^8.0.0",
"node-sass": "^7.0.3"
},
"devDependencies": {
"@saithodev/semantic-release-sharedconf-npm": "^2.1.2",
"@semantic-release/git": "^9.0.1",
"@types/amphtml-validator": "^1.0.1",
"@types/meow": "^5.0.0",
"@types/jest": "^29.2.1",
"@types/mock-fs": "^4.13.1",
"@types/node-sass": "^4.11.3",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.2.2",
"mock-fs": "^5.2.0",
"semantic-release": "^17.4.7",
"semantic-release-github-pr": "^6.0.1",
"ts-jest": "^29.0.3",
"ts-mockito": "^2.6.1",
"typedoc": "^0.23.20",
"typescript": "^4.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}