-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 808 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 808 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
{
"name": "socialsplash",
"version": "1.0.0",
"description": "",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/types.d.ts",
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"test": "jest"
},
"author": "William DA SILVA",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@parcel/packager-ts": "^2.2.1",
"@parcel/transformer-typescript-tsc": "^2.2.1",
"@parcel/transformer-typescript-types": "^2.2.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"babel-jest": "^27.4.6",
"jest": "^27.4.7",
"parcel": "^2.2.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}