-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.64 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
{
"name": "jq-memory-game",
"version": "1.1.0",
"description": "A jquery plugin to create a simple memory game",
"main": "dist/jquery.memory-game.js",
"jsnext:main": "esm2015/jquery.memorygame.js",
"es2015": "esm2015/jquery.memorygame.js",
"module": "esm2015/jquery.memorygame.js",
"ts:main": "src/index.ts",
"types": "src/index.ts",
"typings": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "https://github.com/davinchi-finsi/jq-memory-game.git"
},
"homepage": "https://github.com/davinchi-finsi/jq-memory-game",
"author": "Finsi",
"license": "MIT",
"devDependencies": {
"@release-it/conventional-changelog": "^2.0.0",
"@types/jquery": "^3.3.2",
"@types/jqueryui": "^1.12.2",
"@types/node": "^14.0.27",
"chalk": "^4.1.0",
"conventional-changelog-cli": "^2.0.34",
"lodash.camelcase": "^4.3.0",
"release-it": "^14.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.23.0",
"rollup-plugin-license": "^2.1.0",
"rollup-plugin-scss": "^2.5.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-uglify-es": "0.0.1",
"standard-version": "^8.0.2",
"terser": "^5.0.0",
"typedoc": "^0.17.8",
"typedoc-plugin-external-module-name": "^1.1.1",
"typescript": "^3.9.7"
},
"dependencies": {
"jquery": "^3.3.1"
},
"peerDependencies": {
"jquery-ui": "^1.12.1"
}
}