-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1003 Bytes
/
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
{
"name": "@creately/siddi",
"version": "1.0.14",
"description": "A convenient event tracker API which sends events to multiple consumers",
"main": "dist/siddi.js",
"scripts": {
"build": "tsc",
"lint": "prettier --print-width 120 --single-quote --trailing-comma es5 --write \"src/**/*.ts\"",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"prepublish": "rimraf dist && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/creately/siddi"
},
"files": [
"/dist"
],
"keywords": [
"Event tracker",
"Event API",
"Analytics API"
],
"author": "Niroshana Madusanka <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.12",
"jest": "^23.6.0",
"prettier": "^1.15.3",
"rimraf": "^2.6.3",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.3",
"typescript": "~3.1.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
}
}