This repository has been archived by the owner on Dec 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 3.37 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@form8ion/lift-javascript",
"description": "lift enhancer for details specific to the JavaScript language",
"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/lift-javascript",
"bugs": "https://github.com/form8ion/lift-javascript/issues",
"homepage": "https://npm.im/@form8ion/lift-javascript",
"author": "Matt Travi <npm@travi.org> (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",
"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",
"lint:gherkin": "gherkin-lint",
"pretest:integration:base": "preview",
"test:integration": "run-s 'test:integration:base -- --profile noWip'",
"test:integration:base": "DEBUG=any cucumber-js test/integration --profile base",
"test:integration:debug": "NODE_OPTIONS=--enable-source-maps DEBUG=test run-s test:integration",
"test:integration:wip": "run-s 'test:integration:base -- --profile wip'",
"test:integration:focus": "run-s 'test:integration:base -- --profile focus'",
"prepare": "husky install"
},
"devDependencies": {
"@babel/register": "7.16.5",
"@cucumber/cucumber": "8.0.0-rc.1",
"@form8ion/babel-preset": "1.6.73",
"@form8ion/commitlint-config": "1.0.23",
"@form8ion/eslint-config": "1.10.0",
"@form8ion/eslint-config-cucumber": "1.4.0",
"@form8ion/eslint-config-mocha": "1.2.16",
"@form8ion/remark-lint-preset": "1.0.13",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-node-resolve": "13.1.1",
"@travi/any": "2.0.19",
"ban-sensitive-files": "1.9.16",
"chai": "4.3.4",
"clear-module": "4.1.2",
"codecov": "3.8.3",
"cz-conventional-changelog": "3.3.0",
"gherkin-lint": "4.2.2",
"husky": "7.0.4",
"import-fresh": "3.3.0",
"js-yaml": "4.1.0",
"lockfile-lint": "4.6.2",
"make-dir": "3.1.0",
"mocha": "9.1.3",
"mock-fs": "5.1.2",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"package-preview": "4.0.0",
"remark-cli": "9.0.0",
"remark-toc": "7.2.0",
"remark-usage": "9.0.0",
"rimraf": "3.0.2",
"rollup": "2.61.1",
"rollup-plugin-auto-external": "2.0.0",
"sinon": "12.0.1",
"testdouble": "3.16.3"
},
"dependencies": {
"@form8ion/core": "^1.3.1",
"@form8ion/eslint": "2.0.1",
"@form8ion/husky": "2.2.0",
"@form8ion/javascript-core": "^4.0.0",
"@travi/cli-messages": "^1.0.4",
"deepmerge": "^4.2.2",
"execa": "^5.0.0",
"semver": "^7.3.4"
}
}