-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
57 lines (57 loc) · 1.3 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
{
"name": "welcome.js",
"description": "**welcome.js** is a tiny javascript file you can add to any web page to help novice users get the most out of the web.",
"version": "1.0.0",
"homepage": "https://github.com/stml/welcomejs#readme",
"author": "James Bridle <http://shorttermmemoryloss.com>",
"license": "MIT",
"main": "welcome.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stml/welcomejs.git"
},
"bugs": {
"url": "https://github.com/stml/welcomejs/issues"
},
"scripts": {
"minify": "uglifyjs welcome.js --compress --mangle -o welcome.min.js"
},
"devDependencies": {
"uglifyjs": "^2.4.10"
},
"files": [
"welcome.js",
"welcome.min.js"
],
"engines": {
"node": ">=4"
},
"keywords": [
"console",
"friendly",
"welcome",
"help"
],
"author": "James Bridle",
"license": "MIT",
"bugs": {
"url": "https://github.com/stml/welcomejs/issues"
},
"homepage": "https://github.com/stml/welcomejs#readme",
"autoupdate": {
"source": "git",
"target": "git://github.com/stml/welcomejs.git",
"fileMap": [
{
"basePath": "",
"files": [
"welcome.js",
"welcome.min.js"
]
}
]
}
}