-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.59 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
{
"name": "blah-code",
"version": "2.0.1",
"license": "MIT",
"description": "Encode and decode blah code.",
"repository": "bullgit/blah-code",
"homepage": "https://bullg.it/blah-code",
"contributors": [
{
"name": "Michael Kühnel",
"email": "mail@michael-kuehnel.de",
"url": "http://michael-kuehnel.de"
},
{
"name": "Haroen Viaene",
"email": "hello@haroen.me",
"url": "https://haroen.me"
},
{
"name": "Steve Ulrich",
"email": "spamalot@hardcoded.de",
"url": "http://hardcoded.de"
}
],
"files": [
"index.js",
"blah-code.js",
"blah-code.min.js",
"blah-code.min.js.map"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha",
"lint": "xo",
"lint:fix": "xo --fix",
"posttest": "npm run lint",
"build": "uglifyjs blah-code.js --source-map blah-code.min.js.map --source-map-url blah-code.min.js.map --preamble \"/*! ${npm_package_name} - v${npm_package_version} - ${npm_package_homepage} - ${npm_package_license} License */\" --mangle --compress --output blah-code.min.js",
"release:major": "mversion major",
"release:minor": "mversion minor",
"release:patch": "mversion patch"
},
"keywords": [
"blah",
"bullgit"
],
"dependencies": {},
"devDependencies": {
"chai": "^3.4.1",
"mocha": "^2.3.4",
"mversion": "^1.10.1",
"uglify-js": "^2.6.1",
"xo": "^0.12.1"
},
"xo": {
"envs": [
"node",
"amd",
"mocha"
],
"rules": {
"no-return-assign": [
2,
"except-parens"
]
}
}
}