-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.88 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
{
"name": "segment-service-js",
"version": "1.0.3",
"description": "A layer built on top of analytics-node to have some more bells and whistles",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "jest",
"precommit": "lint-staged",
"release": "tsc && standard-version",
"commit": "git-cz",
"commit-retry": "git cz --retry"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karmadev/segment-service-js.git"
},
"keywords": [
"analytics",
"services",
"segment"
],
"author": {
"name": "Joel Baudin",
"email": "joel@karma.life"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/karmadev/segment-service-js/issues"
},
"homepage": "https://github.com/karmadev/segment-service-js#readme",
"devDependencies": {
"@types/jest": "^21.1.8",
"@types/lodash": "^4.14.88",
"@types/node": "^9.4.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^5.0.0",
"prettier": "^1.8.2",
"standard-version": "^4.2.0",
"ts-jest": "^21.2.2"
},
"dependencies": {
"analytics-node": "^3.1.1",
"lodash": "^4.17.4",
"typescript": "^2.6.1"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"lint-staged": {
"*.{ts,js,json}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}