-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.22 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
66
67
{
"name": "@form8ion/ski-patrol",
"description": "a doctor utility for the form8ion tool suite",
"license": "MIT",
"version": "0.0.0-semantically-released",
"files": [
"example.js",
"lib/"
],
"publishConfig": {
"access": "public"
},
"runkitExampleFilename": "./example.js",
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"sideEffects": false,
"repository": "form8ion/ski-patrol",
"bugs": "https://github.com/form8ion/ski-patrol/issues",
"homepage": "https://npm.im/@form8ion/ski-patrol",
"author": "Matt Travi <[email protected]> (https://matt.travi.org/)",
"scripts": {
"test": "npm-run-all --print-label build --parallel lint:* --parallel test:*",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"lint:js": "eslint . --cache",
"lint:md": "remark . --frail",
"generate:md": "remark . --output",
"pregenerate:md": "npm run build",
"lint:sensitive": "ban",
"lint:travis": "travis-lint .travis.yml",
"clean": "rimraf ./lib",
"prebuild": "run-s clean",
"build": "npm-run-all --print-label --parallel build:*",
"build:js": "rollup --config",
"watch": "run-s 'build:js -- --watch'",
"prepack": "run-s build",
"test:unit": "nyc run-s test:unit:base",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test:unit:base": "DEBUG=any mocha 'src/**/*-test.js'",
"lint:peer": "npm ls >/dev/null"
},
"devDependencies": {
"@babel/register": "7.9.0",
"@form8ion/babel-preset": "1.6.21",
"@form8ion/commitlint-config": "1.0.9",
"@form8ion/eslint-config": "1.6.16",
"@form8ion/eslint-config-mocha": "1.2.8",
"@form8ion/remark-lint-preset": "1.0.6",
"@travi/any": "2.0.7",
"ban-sensitive-files": "1.9.7",
"chai": "4.2.0",
"codecov": "3.7.1",
"cz-conventional-changelog": "3.2.0",
"husky": "4.3.8",
"lockfile-lint": "4.2.2",
"mocha": "10.1.0",
"npm-run-all": "4.1.5",
"nyc": "15.0.1",
"remark-cli": "8.0.0",
"remark-toc": "7.0.0",
"remark-usage": "8.0.0",
"rimraf": "3.0.2",
"rollup": "2.9.1",
"rollup-plugin-auto-external": "2.0.0",
"sinon": "9.0.2",
"travis-lint": "1.0.0"
}
}