-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 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
{
"name": "arobase",
"version": "0.0.1",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "lib/index.js",
"scripts": {
"build:prod": "webpack --env mode production",
"watch:prod": "webpack --watch --env mode production --entry=./src/index.ts --output-path=lib --output-filename=index.js",
"start": "webpack-dev-server --open \"Brave Browser\" --watch --config webpack.config.dev.js --output-path=dist --output-filename=bundle.js",
"start:google": "webpack-dev-server --watch --config webpack.config.dev.js --output-path=dist --output-filename=bundle.js",
"test": "jest",
"test:update": "jest --updateSnapshot",
"typedoc": "typedoc --mode modules --ignoreCompilerErrors --stripInternal --out docs src && touch docs/.nojekyll && cp -r images docs/images",
"release": "npm run build:prod && npm publish"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.(ts)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|js)?$",
"testPathIgnorePatterns": [
"/examples/"
]
},
"author": "joegasewicz",
"license": "MIT",
"files": [
"lib"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"source-map-loader": "^5.0.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"tslint": "^6.1.3",
"typedoc": "^0.25.12",
"typescript": "^5.4.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2"
}
}