-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 951 Bytes
/
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
{
"name": "txabox-publish-test",
"version": "1.0.0-test.0",
"description": "a simple test to test publishes to npmjs",
"main": "./dist-commonjs/src/index.js",
"types": "./dist-commonjs/src/types/index.d.ts",
"repository": "[email protected]:Txabs/publishTest.git",
"author": "Txabs <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc && tsc --module es6 --outDir dist-es6 && webpack",
"lint": "tsc --noEmit && eslint './**/*.{js,jsx,ts,tsx}'",
"prebuild": "rimraf dist-commonjs && rimraf dist-es6 && rimraf dist-umd",
"precommit": "yarn run lint && yarn run test",
"prepush": "yarn run test",
"test": "echo 'NO TESTS IMPLEMENTED YET'"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-ts-mailonline": "^2.0.3",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
}
}