-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
{
"name": "@viglet/shio",
"version": "0.3.7c",
"description": "Shio CMS Javascript SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha --timeout 60000 -r ts-node/register test/**/*.spec.ts",
"build": "tsc",
"docs": "typedoc --out docs src",
"deploy": "tsc && npm publish --access public"
},
"keywords": [
"typescript",
"github packages",
"npm packages"
],
"author": "Alexandre Oliveira",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/ShioCMS/shio-js-sdk.git"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/debug": "^4.1.5",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"ts-node": "^8.8.1",
"tslint": "^6.1.1",
"typescript": "~3.8.3"
},
"dependencies": {
"@types/cheerio": "^0.22.18",
"@types/deasync": "^0.1.1",
"@types/require-from-string": "^1.2.0",
"cheerio": "^1.0.0-rc.3",
"deasync": "^0.1.20",
"debug": "^4.1.1",
"graphql-request": "^1.8.2",
"handlebars": "^4.7.6",
"require-from-string": "^2.0.2"
},
"engines": {
"node": ">=8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/@viglet"
}
}