-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "baby-query",
"version": "1.0.7",
"description": "baby query is a custom implementation of the popular javascript library jQuery.",
"source": "./src/babyQuery.js",
"main": "./dist/babyQuery.js",
"entry point": "./dist/babyQuery.js",
"scripts": {
"test": "jest --env=jsdom --coverage --watchAll",
"watch": "parcel watch",
"build": "parcel build",
"parcel": "concurrently \"parcel watch\" \"parcel build\"",
"docs:dev": "vitepress dev docs/",
"docs:build": "vitepress build docs/",
"docs:preview": "vitepress preview docs/",
"docs": "concurrently \"vitepress dev docs/\" \"npm run docs:build\" \"npm run docs:preview\""
},
"readme": "README.npm.md",
"repository": {
"type": "git",
"url": "git+https://github.com/robiulhr/baby-query.git"
},
"keywords": [
"javascript",
"jquery",
"baby-query",
"dom"
],
"author": "Robiul H.",
"license": "MIT",
"bugs": {
"url": "https://github.com/robiulhr/baby-query/issues"
},
"homepage": "https://robiulhr.github.io/baby-query/",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.5.0",
"concurrently": "^7.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"parcel": "^2.8.3",
"vite": "^4.2.1",
"vitepress": "^1.0.0-alpha.60",
"vue": "^3.2.47"
}
}