-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1008 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1008 Bytes
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
{
"name": "pandora-widget",
"version": "1.1.0",
"description": "Widget 是 UI 组件的基础类,约定了组件的基本生命周期,实现了一些通用功能。基于 Widget 可以构建出任何你想要的 Web 界面组件。",
"keywords": ["pandora","widget"],
"homepage": "https://github.com/pandorajs/widget",
"author": {
"name": "pandorajs",
"url": "https://github.com/pandorajs"
},
"owners" : [{
"name" : "pandorajs"
}],
"repository": {
"type": "git",
"url": "git://github.com/pandorajs/widget.git"
},
"bugs": {
"url": "https://github.com/pandorajs/widget"
},
"licenses": "MIT",
"spm": {
"main": "widget.js",
"output" :["widget.js"],
"dependencies": {
"jquery": "1.11.1",
"pandora-base": "1.1.0"
},
"buildArgs": "--ignore jquery",
"devDependencies": {
"expect.js": "0.3.1"
}
},
"devDependencies": {
"spm": "3"
},
"scripts": {
"test": "spm test",
"build": "spm build"
}
}