-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 861 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 861 Bytes
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
{
"name": "parcel_jquery_ts_sample",
"version": "1.0.0",
"description": "This is a JQuery and Typescript sample by the Parcel.",
"keywords": [
"parcel",
"jquery",
"typescript"
],
"author": "bit2zero",
"license": "ISC",
"main": "src/index.html",
"scripts": {
"test": "parcel src/index.html src/bundle.ts --out-dir test --open",
"build": "parcel build src/index.html src/bundle.ts --public-url ./ --no-source-maps"
},
"engines": {
"node": "^12.14.1",
"npm": "^6.13.4"
},
"devDependencies": {
"parcel-bundler": "^1.12.4",
"typescript": "^3.7.4"
},
"dependencies": {
"@types/jquery": "^3.3.31",
"jquery": "^3.4.1",
"src": "^1.1.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git@github.com:bit2zero/parcel_jquery_ts_sample.git"
}
}