-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.97 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
{
"name": "stylesheet.js",
"version": "1.1.1",
"description": "Generate and edit a dynamic Cascading Style Sheet using JavaScript.",
"homepage": "https://github.com/ro-ka/stylesheet.js",
"bugs": "https://github.com/ro-ka/stylesheet.js/issues",
"main": "./lib/stylesheet.js",
"scripts": {
"lint": "eslint ./lib ./test/*-test.js",
"pretest": "npm run lint",
"test": "mocha-phantomjs ./test/index.html",
"clean": "rm -rf ./dist/*",
"copy": "cp ./lib/*.js ./dist/",
"uglify": "uglifyjs ./dist/stylesheet.js --compress --mangle -o ./dist/stylesheet.min.js",
"compress": "gzip --force --keep ./dist/stylesheet.min.js",
"build": "npm run clean && npm run copy && npm run uglify && npm run compress",
"changelog": "conventional-changelog-generator && atom -w CHANGELOG.md",
"release": "echo 'Usage: npm run release:patch|minor|major'",
"release:patch": "bumpery --verify='npm test' --no-push --no-commit --no-createTag --versionType patch && npm run changelog && npm run release:commit",
"release:minor": "bumpery --verify='npm test' --no-push --no-commit --no-createTag --versionType minor && npm run changelog && npm run release:commit",
"release:major": "bumpery --verify='npm test' --no-push --no-commit --no-createTag --versionType major && npm run changelog && npm run release:commit",
"release:commit": "bumpery --commitFiles 'CHANGELOG.md package.json' --commitMessage 'chore(release): version %VERSION%' --no-bumpVersion && npm publish"
},
"repository": {
"type": "git",
"url": "ro-ka/stylesheet.js"
},
"keywords": [
"CSS",
"stylesheet"
],
"author": {
"name": "Robert Katzki",
"email": "[email protected]",
"url": "http://katzki.de"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"bumpery": "^1.0.7",
"conventional-changelog-generator": "0.0.3",
"eslint": "^3.1.1",
"mocha-phantomjs": "^4.1.0",
"phantomjs-prebuilt": "^2.1.7",
"uglify-js": "^2.4.23"
}
}