-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
53 lines (53 loc) · 1.78 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
{
"name": "uberproto",
"description": "JavaScript object inheritance sugar: Easy extension, mixins, super methods, proxies",
"version": "2.0.6",
"homepage": "http://daffl.github.com/uberproto",
"repository": {
"type": "git",
"url": "git://github.com/daffl/uberproto.git"
},
"author": "David Luecke <daff@neyeon.com> (http://neyeon.com)",
"main": "lib/proto",
"directories": {
"lib": "lib"
},
"scripts": {
"add-dist": "npm run clean && npm run build && git add dist/ --force && git commit -am \"Updating dist\"",
"clean": "shx rm -rf dist/ && shx mkdir -p dist",
"build": "npm run clean && npm run copy && npm run uglifyjs",
"copy": "shx cp lib/proto.js dist/proto.js",
"uglifyjs": "uglifyjs lib/proto.js --compress --mangle > dist/proto.min.js",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:patch": "npm run add-dist && npm version patch && npm publish",
"release:minor": "npm run add-dist && npm version minor && npm publish",
"release:major": "npm run add-dist && npm version major && npm publish",
"lint": "semistandard --fix",
"mocha": "mocha test/test.js",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- test/test.js",
"test": "npm run lint && npm run coverage"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"semistandard": {
"env": [
"mocha"
]
},
"devDependencies": {
"mocha": "^7.0.1",
"istanbul": "^1.1.0-alpha.1",
"semistandard": "^14.2.0",
"shx": "^0.3.2",
"uglify-js": "^3.7.7"
},
"engines": {
"node": "*"
},
"dependencies": {}
}