-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "lumen-js",
"version": "1.3.5",
"description": "Personalized and targeted customer marketing",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/uselumen/lumen-js",
"homepage": "https://github.com/uselumen/lumen-js#readme",
"author": "oluwakeye",
"license": "MIT",
"files": [
"dist/**/*"
],
"keywords": [
"lumen",
"uselumen",
"lumen-js",
"lumen.js"
],
"scripts": {
"build": "tsc",
"clean": "tsc --build --clean",
"example": "ts-node examples/index.ts",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "yarn build",
"prepublishOnly": "yarn lint",
"release": "yarn prepare build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^18.0.6",
"prettier": "^2.6.2",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.2"
},
"dependencies": {
"cross-fetch": "^3.1.5"
},
"publishConfig": {
"access": "public"
}
}