-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
68 lines (68 loc) · 1.97 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
{
"name": "react-freshchat",
"version": "1.0.11",
"description": "FreshChat React implementation",
"main": "build/react-freshchat.js",
"scripts": {
"build": "NODE_ENV=production babel src -d build",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "npm t -- --coverage --json --outputFile=test-results.json",
"cicoverage": "npm test",
"lint": "eslint --ignore-path .gitignore 'react-freshchat.js'",
"lint:ci": "npm run lint -- -o lint-results.json -f json",
"lint:fix": "npm run fmt && npm run lint -- --fix",
"fmt": "prettier --write 'react-freshchat.js'",
"duti:fix": "npm run fmt && npm run lint-fix && npm run fmt",
"danger": "duti"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprocure/react-freshchat.git"
},
"keywords": [
"react",
"freshchat"
],
"author": "Giuliano Kranevitter <gkranevitter@govspend.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/smartprocure/react-freshchat/issues"
},
"homepage": "https://github.com/smartprocure/react-freshchat#readme",
"dependencies": {
"babel-runtime": "^6.26.0",
"lodash": "^4.17.4",
"react": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react-app": "^3.1.1",
"danger": "~0.18.0",
"duti": "latest",
"eslint": "^4.15.0",
"eslint-config-smartprocure": "^1.0.2",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-prettier": "^2.3.1",
"ghooks": "^2.0.0",
"jest": "^22.1.2",
"prettier": "^1.7.4"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test",
"post-merge": "npm install",
"post-rewrite": "npm install"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}