forked from ampproject/amp-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.65 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
{
"name": "@ampproject/toolbox-linter",
"version": "1.1.2",
"description": "A linter for AMP documents",
"repository": "https://github.com/ampproject/amp-toolbox/tree/@ampproject/toolbox-linter",
"license": "Apache-2.0",
"author": "AMPHTML Team",
"dependencies": {
"@ampproject/toolbox-cache-list": "^1.1.1",
"@ampproject/toolbox-cache-url": "^1.1.1",
"amphtml-validator": "1.0.29",
"chalk": "3.0.0",
"cheerio": "1.0.0-rc.2",
"commander": "4.0.1",
"debug": "4.1.1",
"execa": "3.4.0",
"node-fetch": "2.6.0",
"probe-image-size": "5.0.0",
"throat": "5.0.0"
},
"bugs": {
"url": "https://github.com/ampproject/amp-toolbox/issues"
},
"engines": {
"node": "8.x.x"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --resolveJsonModule --module commonjs --target es2018 --esModuleInterop --strictNullChecks --declaration --outDir dist src/*.ts",
"transpile": "tsc --resolveJsonModule --module commonjs --target es2018 --esModuleInterop --noImplicitAny --strictNullChecks src/*.ts tests/*.ts",
"test": "$npm_execpath run transpile && cd tests && for t in helper.js local.js network.js ; do ( test -e $t || $npm_execpath run build ) && ( node $t | tap-parser -t ) || exit 1 ; done ; exit 0",
"lint": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'",
"lint:fix": "prettier --fix 'src/**/*.ts' 'tests/**/*.ts'"
},
"prettier": {
"quoteProps": "consistent"
},
"gitHead": "783938063dde0c32f5a79af4148eec53f26e903f",
"devDependencies": {
"prettier": "1.19.1",
"tap-parser": "10.0.1",
"typescript": "3.7.3"
}
}