-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "textstyler",
"version": "0.0.0-development",
"description": "Style your text",
"main": "./build/index.js",
"scripts": {
"codecov": "codecov",
"commitmsg": "commitlint -e $GIT_PARAMS",
"compile": "babel -d build/ src/ --ignore node_modules,*.test.js",
"lint": "eslint --ext .js .",
"test": "jest --coverage",
"prepublishOnly": "npm run compile",
"semantic-commit": "commit",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaebradley/textstyler.git"
},
"keywords": [
"text",
"highlight"
],
"author": "jae.b.bradley@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaebradley/textstyler/issues"
},
"homepage": "https://github.com/jaebradley/textstyler#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@commitlint/cli": "^5.1.1",
"@commitlint/config-angular": "^5.1.1",
"@commitlint/prompt": "^5.1.2",
"@commitlint/prompt-cli": "^5.1.2",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"codecov": "^3.0.0",
"eslint": "^4.12.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"semantic-release": "^8.2.0"
},
"dependencies": {
"colors": "^1.1.2"
}
}