-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.39 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
{
"name": "datepicker-jqueryui",
"version": "1.2.1",
"description": "A Datepicker in JQuery UI with disabled dates and formatting",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sebastianrothe/wp-datepicker-jquery.git"
},
"author": "Sebastian Rothe",
"license": "ISC",
"bugs": {
"url": "https://github.com/sebastianrothe/wp-datepicker-jquery/issues"
},
"homepage": "https://github.com/sebastianrothe/wp-datepicker-jquery#readme",
"scripts": {
"start": "snowpack dev",
"test": "web-test-runner \"src/**/*.test.js\" --node-resolve --watch",
"test:ci": "web-test-runner \"src/**/*.test.js\" --node-resolve --coverage",
"clean": "rm -rf build/** && rm -rf dist/**",
"copy": "./scripts/copy.sh $npm_package_version build",
"build": "snowpack build",
"release:prepare": "run-s clean build copy",
"postversion": "run-s prepare",
"plugin": "./scripts/build.sh $npm_package_version",
"release": "run-s release:prepare plugin",
"browsers": "npx browserslist",
"browsers:update": "npx browserslist@latest --update-db",
"format": "prettier --write 'src/**/*.{js,html}'",
"format:ci": "prettier --list-different 'src/**/*.{js,html}'",
"lint": "eslint --cache --fix 'src/**/*.{js,html}'",
"lint:ci": "eslint 'src/**/*.{js,html}'",
"stylelint": "stylelint --cache --fix 'src/**/*.{css,pcss,html}'",
"stylelint:ci": "stylelint 'src/**/*.{css,pcss,html}'"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4",
"@snowpack/plugin-dotenv": "^2.2.0",
"@snowpack/plugin-postcss": "^1.4.3",
"@snowpack/web-test-runner-plugin": "^0.2.2",
"@web/test-runner": "^0.13.22",
"cssnano": "^5.0.12",
"eslint": "<8",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-promise": "^5.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.4",
"postcss-cli": "^9.0.2",
"postcss-fail-on-warn": "^0.2.1",
"postcss-preset-env": "^7.0.1",
"prettier": "^2.5.0",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0",
"snowpack": "^3.8.8",
"snowpack-plugin-terser": "^0.1.0",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"terser": "^5.10.0"
}
}