-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.34 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
{
"author": {
"name": "Silas B. Domingos",
"email": "hello@balmante.eti.br",
"url": "https://balmante.eti.br"
},
"name": "@singleware/convertkit",
"description": "Singleware package containing a rest client for the ConvertKit API",
"license": "MIT",
"version": "1.0.5",
"main": "release/source/index.js",
"types": "release/types/index.d.ts",
"keywords": [
"convertkit",
"api client",
"rest client"
],
"repository": {
"type": "git",
"url": "https://github.com/singleware/convertkit"
},
"dependencies": {
"@singleware/class": "^1.1.19",
"@singleware/injection": "^1.0.23",
"@singleware/restdb": "^1.3.87",
"@singleware/types": "^1.1.3"
},
"devDependencies": {
"@singleware/testing": "^1.0.1",
"@types/node": "^12.12.50",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
},
"prettier": {
"endOfLine": "lf",
"trailingComma": "none",
"printWidth": 145,
"tabWidth": 2,
"singleQuote": true,
"semi": true
},
"scripts": {
"test": "node ./release/tests/suite.js",
"build": "npm run clean && npm run make && npm run make-tests",
"clean": "rm -rf ./release",
"make": "npm run compile-source",
"compile-source": "npx tsc -p ./source",
"make-tests": "npm run compile-tests-source",
"compile-tests-source": "npx tsc -p ./tests"
}
}