-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.25 KB
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": "@langpress/sdk",
"version": "0.1.0",
"description": "A SDK to communicate with LangPress ecosystem",
"main": "lib/bundle.js",
"private": true,
"scripts": {
"watch": "webpack --mode=development -d --watch --config webpack.config.js",
"build": "webpack --mode=production -p --config webpack.config.js",
"test": "jest"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"files": [
"lib/bundle.js"
],
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/polyfill": "^7.2.5",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"rangy": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.35",
"babel-loader": "^8.0.5",
"cross-fetch": "^3.1.3",
"jest": "^26.6.3",
"source-map-loader": "^0.2.4",
"ts-jest": "^26.5.4",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"author": {
"name": "Danny Coulombe",
"email": "contact@dannycoulombe.com"
},
"license": "UNLICENSED"
}