-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 1.77 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
{
"name": "cocoon-cloud-sdk",
"version": "3.0.0",
"description": "Cocoon.io is a cloud service that allows any web developer to build performant mobile native apps/games based on their HTML5 content.",
"keywords": [
"apps",
"cli",
"cloud",
"cocoon",
"cocoon.io",
"compiler",
"html5",
"games",
"gulp",
"grunt",
"javascript",
"js",
"sdk",
"typescript"
],
"author": "Ludei Developers <devs@ludei.com>",
"license": "MIT",
"homepage": "https://github.com/CocoonIO/cocoon-cloud-sdk",
"repository": {
"type": "git",
"url": "https://github.com/CocoonIO/cocoon-cloud-sdk"
},
"bugs": {
"url": "https://github.com/CocoonIO/cocoon-cloud-sdk/issues"
},
"files": [
"examples",
"declarations",
"out"
],
"main": "out/index.js",
"types": "declarations/index.d.ts",
"directories": {
"example": "./examples",
"lib": "./src",
"test": "./spec"
},
"runkitExampleFilename": "examples/runkit.js",
"scripts": {
"docs": "typedoc --mode file --name 'Cocoon Cloud SDK' --out docs --json docs/project.json --excludePrivate --ignoreCompilerErrors . && cp -f assets/* docs/",
"inspect-spec": "eslint spec/tests && jshint spec/tests",
"inspect-src": "tslint --project tsconfig.json",
"prepare": "npm run transpile",
"prettier": "prettier --config .prettierrc --write src/**/* ",
"test": "npm run prepare && jasmine",
"transpile": "tsc"
},
"dependencies": {
"@types/node": "~10.12.3",
"cocoon-xml-sugar": "~2.0.2",
"detect-node": "~2.0.4",
"popsicle": "~10.0.1",
"popsicle-status": "~2.0.1"
},
"devDependencies": {
"@types/form-data": "~2.2.1",
"@types/tough-cookie": "~2.3.4",
"eslint": "~5.8.0",
"jasmine": "~3.3.0",
"jshint": "~2.9.6",
"prettier": "~1.15.1",
"tslint": "~5.11.0",
"typedoc": "~0.13.0",
"typescript": "~3.1.6"
}
}