-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "pushex",
"version": "1.0.0",
"description": "JS client for PushEx (https://github.com/pushex-project/pushex)",
"main": "dist/pushex.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run pretty:check && webpack --mode=production && npm run types:generate",
"pretty": "prettier src/**/*.{js,ts} --write",
"pretty:check": "prettier src/**/*.{js,ts} -l",
"test": "jest",
"test:watch": "jest --watch",
"types:check": "tsc --noEmit",
"types:generate": "tsc --emitDeclarationOnly --outDir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pushex-project/pushex.js.git"
},
"keywords": [],
"author": "Steve Bussey",
"license": "MIT",
"bugs": {
"url": "https://github.com/pushex-project/pushex.js/issues"
},
"homepage": "https://github.com/pushex-project/pushex.js#readme",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/phoenix": "^1.4.4",
"babel-core": "^6.26.3",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"fork-ts-checker-webpack-plugin": "^5.0.9",
"jest": "^26.1.0",
"prettier": "2.1.1",
"typescript": "^4.4.4",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"phoenix": "^1.7.12"
},
"files": [
"dist",
"src",
"CHANGELOG.md",
"README.md"
]
}