-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "@spearly/jquery-plugin",
"version": "2.0.0",
"description": "This package allows to easily implement Spearly in your jQuery codes!",
"main": "dist/spearly-plugin.js",
"files": [
"dist"
],
"scripts": {
"build:dev": "webpack --config webpack.config.js",
"build:prod": "webpack --config webpack.prod.js",
"test": "jest",
"start:playground": "browser-sync start --config bs-config.js",
"dev": "webpack --config webpack.config.js --watch & npm run start:playground"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unimal-jp/spearly-cms-jquery-plugin.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/unimal-jp/spearly-cms-jquery-plugin/issues"
},
"homepage": "https://github.com/unimal-jp/spearly-cms-jquery-plugin#readme",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.4",
"browser-sync": "^2.27.9",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"jquery": "^3.6.0",
"nanoid": "^4.0.2"
}
}