-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.52 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
{
"name": "preserve-case",
"version": "0.0.0-development",
"description": "case-preserving string.replace",
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib test --cache",
"lint:fix": "eslint --fix lib test --cache",
"lint:watch": "esw --watch lib test --cache",
"flow": "flow",
"flow:coverage": "for file in lib/**.js test/**.js; do echo $file; flow coverage $file; done",
"flow:watch": "flow-watch -e js,js.flow,flowconfig --ignore node_modules/ --watch .flowconfig --watch lib/ --watch test/",
"test": "NODE_ENV=production BABEL_ENV=test nyc --reporter=lcov --reporter=text mocha $npm_package_config_mocha",
"test:watch": "mocha --watch $npm_package_config_mocha",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov; codecov",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "npm run lint && flow",
"prepush": "npm test",
"prepublishOnly": "npm run lint && flow && npm test",
"open:coverage": "open coverage/lcov-report/index.html",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"config": {
"mocha": "./test/**/*.js",
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"include": [
"lib/**/*.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/jedwards1211/preserve-case.git"
},
"keywords": [
"case-preserving",
"preserve-case",
"refactoring",
"replace",
"replace-text",
"string-manipulation",
"string-replace",
"string-substitution"
],
"author": "Andy Edwards",
"license": "MIT",
"bugs": {
"url": "https://github.com/jedwards1211/preserve-case/issues"
},
"homepage": "https://github.com/jedwards1211/preserve-case#readme",
"devDependencies": {
"@commitlint/cli": "^6.0.2",
"@commitlint/config-conventional": "^6.0.2",
"@jedwards1211/commitlint-config": "^1.0.0",
"@jedwards1211/eslint-config-es5": "^1.0.0",
"@jedwards1211/eslint-config-flow": "^1.0.0",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"copy": "^0.3.0",
"coveralls": "^2.13.0",
"eslint": "^3.18.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-watch": "^3.0.1",
"flow-bin": "^0.69.0",
"flow-watch": "^1.1.1",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"rimraf": "^2.6.1",
"semantic-release": "^12.2.2",
"travis-deploy-once": "^4.3.1",
"validate-commit-msg": "^2.11.2"
},
"dependencies": {
"case": "^1.5.2"
}
}