-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.73 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.73 KB
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
{
"version": "1.4.1-2",
"name": "@mobile/tinycolor2",
"alias": "tinycolor2",
"description": "Repackaged version of tinycolor2 for mobile",
"url": "http://bgrins.github.com/TinyColor",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://bgrins.github.com/TinyColor"
},
"keywords": [
"color",
"parser",
"tinycolor",
"mobile"
],
"author": "Brian Grinstead <briangrinstead@gmail.com> (http://briangrinstead.com)",
"contributors": [],
"main": "./tinycolor.js",
"directories": {},
"engines": {
"node": "*"
},
"scripts": {
"download": "npm install %npm_package_source_name%@%npm_package_version%",
"commit": "git add -A && git commit -m \":checkered_flag: v%npm_package_version% :heavy_minus_sign: Repackaging from: %npm_package_source_url%\"",
"tag": "git tag v%npm_package_version%",
"push": "git push && git push --tags",
"update:version": "npm --no-git-tag-version version --",
"update:download": "npm run update:version --",
"update:copy": "cp ./node_modules/tinycolor2/tinycolor.js .",
"update:commit": "npm run update:version --",
"update:push": "npm run update:version --",
"update:publish": "npm run update:version --",
"postupdate:download": "npm run download && npm run update:copy",
"postupdate:commit": "npm run commit && npm run tag",
"postupdate:push": "npm run postupdate:download && npm run postupdate:commit && npm run push",
"postupdate:publish": "npm run postupdate:push && npm publish"
},
"devDependencies": {
"eslint": "^4.14.0",
"eslint-plugin-jsdoc": "^3.3.0",
"eslint-plugin-promise": "^3.6.0"
},
"source": {
"name": "tinycolor2",
"url": "https://www.npmjs.com/package/tinycolor2"
},
"mobile": {
"alias": "tinycolor2"
},
"publishConfig": {
"access": "public"
}
}