-
Notifications
You must be signed in to change notification settings - Fork 411
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "jquery-color",
"title": "jQuery Color",
"description": "jQuery plugin for color manipulation and animation support.",
"version": "3.0.1-pre",
"type": "commonjs",
"homepage": "https://github.com/jquery/jquery-color",
"author": {
"name": "OpenJS Foundation and other contributors",
"url": "https://github.com/jquery/jquery-color/blob/main/AUTHORS.txt"
},
"scripts": {
"authors:check": "node --input-type=module -e \"import { checkAuthors } from './build/release/authors.js'; checkAuthors()\"",
"authors:update": "node --input-type=module -e \"import { updateAuthors } from './build/release/authors.js'; updateAuthors()\"",
"build": "node --input-type=module -e \"import { build } from './build/tasks/build.js'; build()\"",
"build:clean": "rimraf --glob dist/*.{js,map}",
"lint": "eslint --cache .",
"npmcopy": "node build/tasks/npmcopy.js",
"pretest": "npm run npmcopy && npm run build && npm run lint",
"prepare": "husky",
"release": "release-it",
"release:cdn": "node build/release/cdn.js",
"release:clean": "rimraf tmp/release",
"test:browser": "npm run pretest && npm run test:unit -- -b chrome -b firefox --headless",
"test:chrome": "npm run pretest && npm run test:unit -- -v -b chrome --headless",
"test:edge": "npm run pretest && npm run test:unit -- -v -b edge --headless",
"test:firefox": "npm run pretest && npm run test:unit -- -v -b firefox --headless",
"test:safari": "npm run pretest && npm run test:unit -- -b safari",
"test:server": "jtr serve",
"test:unit": "jtr",
"test": "npm run test:browser"
},
"maintainers": [
{
"name": "Corey Frang",
"email": "gnarf37@gmail.com"
},
{
"name": "Michał Gołębiowski-Owczarek",
"email": "m.goleb@gmail.com",
"url": "https://github.com/mgol"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/jquery/jquery-color.git"
},
"bugs": "https://github.com/jquery/jquery-color/issues",
"license": "MIT",
"main": "dist/jquery.color.js",
"files": [
"dist",
"README.md",
"AUTHORS.txt",
"LICENSE.txt"
],
"peerDependencies": {
"jquery": ">=1.12.0"
},
"devDependencies": {
"@swc/core": "1.11.24",
"commitplease": "3.2.0",
"cross-env": "7.0.3",
"eslint": "9.39.5",
"eslint-config-jquery": "3.0.2",
"globals": "16.5.0",
"husky": "9.1.7",
"jquery": "4.0.0",
"jquery-1.12.4": "npm:jquery@1.12.4",
"jquery-2.2.4": "npm:jquery@2.2.4",
"jquery-3.0.0": "npm:jquery@3.0.0",
"jquery-3.1.1": "npm:jquery@3.1.1",
"jquery-3.2.1": "npm:jquery@3.2.1",
"jquery-3.3.1": "npm:jquery@3.3.1",
"jquery-3.4.1": "npm:jquery@3.4.1",
"jquery-3.5.1": "npm:jquery@3.5.1",
"jquery-3.6.4": "npm:jquery@3.6.4",
"jquery-3.7.1": "npm:jquery@3.7.1",
"jquery-4.0.0": "npm:jquery@4.0.0",
"jquery-test-runner": "0.3.1",
"qunit": "2.26.0",
"release-it": "21.0.1",
"rimraf": "6.1.0"
},
"commitplease": {
"nohook": true,
"components": [
"All",
"Build",
"Core",
"Readme",
"Tests"
]
},
"keywords": [
"color",
"animation",
"jquery-plugin",
"ecosystem:jquery"
]
}