-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
59 lines (59 loc) · 1.95 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": "autodux",
"version": "5.0.3",
"description": "Automate the Redux boilerplate.",
"main": "index.js",
"module": "src/index.js",
"scripts": {
"lint": "npm run -s lint-js && npm run -s lint-md && echo 'Lint finished.'",
"lint-js": "eslint . --fix",
"lint-md": "markdownlint *.md && textlint *.md",
"test": "node -r esm node_modules/.bin/riteway src/*.test.js | tap-nirvana",
"test-coverage": "nyc npm test",
"test-coverage-ci": "nyc --reporter=text-lcov npm test",
"show-coverage-ci": "nyc report --reporter=text-lcov | coveralls",
"show-coverage-text": "nyc report --reporter=text || echo \"Run 'npm run test-coverage' first.\"",
"show-coverage-html": "open coverage/index.html || echo \"Run 'npm run test-coverage' first.\"",
"debug": "echo 'Open debugger in Chrome: \"chrome://inspect\".' && node -r esm --inspect-brk node_modules/.bin/riteway src/*.test.js",
"watch": "watch 'clear && npm -s test' src",
"update": "updtr"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericelliott/autodux.git"
},
"keywords": [
"Redux",
"fp",
"functional"
],
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericelliott/autodux/issues"
},
"homepage": "https://github.com/ericelliott/autodux#readme",
"devDependencies": {
"@textlint-rule/textlint-rule-no-invalid-control-character": "1.2.0",
"coveralls": "3.1.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"markdownlint-cli": "0.23.2",
"nyc": "14.1.1",
"prettier": "1.19.1",
"riteway": "6.2.0",
"tap-nirvana": "1.1.0",
"textlint": "11.7.6",
"textlint-rule-common-misspellings": "1.0.1",
"textlint-rule-terminology": "1.1.30",
"updtr": "3.1.0",
"watch": "1.0.2"
},
"dependencies": {
"esm": "3.2.25",
"ramda": "0.27.1"
}
}