forked from tidev/alloy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.07 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "alloy",
"description": "TiDev Titanium MVC Framework",
"keywords": [
"titanium",
"alloy",
"mobile",
"ios",
"iphone",
"android",
"html5",
"appc-client"
],
"version": "2.0.1",
"author": "TiDev, Inc. <[email protected]>",
"bugs": {
"url": "https://github.com/tidev/alloy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tidev/alloy.git"
},
"preferGlobal": true,
"dependencies": {
"@babel/code-frame": "^7.0.0",
"@babel/core": "^7.4.5",
"@babel/generator": "^7.4.4",
"@babel/parser": "^7.4.5",
"@babel/template": "^7.4.4",
"@babel/traverse": "^7.4.5",
"@babel/types": "^7.4.4",
"@xmldom/xmldom": "^0.8.0",
"async": "^3.2.0",
"colors": "1.4.0",
"commander": "^8.0.0",
"ejs": "3.1.6",
"fs-extra": "^5.0.0",
"global-paths": "^1.0.0",
"jsonlint": "1.6.3",
"lodash": "^4.17.4",
"moment": "2.29.1",
"node.extend": "2.0.2",
"pkginfo": "0.4.1",
"resolve": "^1.1.7",
"source-map": "^0.7.3",
"walk-sync": "^0.3.2",
"xml2tss": "0.0.5"
},
"license": "Apache-2.0",
"bin": {
"alloy": "./bin/alloy"
},
"scripts": {
"test": "jake test:all",
"lint": "eslint .",
"release": "semantic-release"
},
"main": "./Alloy/alloy",
"engines": {
"node": ">=0.10"
},
"devDependencies": {
"@seadub/danger-plugin-dependencies": "^1.0.0",
"@seadub/danger-plugin-eslint": "^3.0.1",
"@seadub/danger-plugin-junit": "^0.3.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"danger": "^10.5.0",
"diff": "^5.0.0",
"eslint": "^8.0.1",
"jake": "^10.8.2",
"semantic-release": "^18.0.0"
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
[
"@semantic-release/github",
{
"successComment": false
}
]
]
}
}