-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.51 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
{
"name": "@evocount/signal",
"version": "0.1.0",
"description": "A signal to manage asynchronous tasks using coroutines.",
"main": "build/index.js",
"repository": "[email protected]:evocount/signal.git",
"scripts": {
"start": "npm run build:development -- --watch",
"build": "npm run build:production",
"build:development": "cross-env TS_NODE_PROJECT=\"webpack.tsconfig.json\" npx webpack --config webpack/development.ts",
"build:production": "npm run clean && cross-env TS_NODE_PROJECT=\"webpack.tsconfig.json\" npx webpack --config webpack/production.ts",
"clean": "rm -rf build",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "npx eslint src/**/*.ts test/**/*.ts",
"test:unit": "npx mocha --require ts-node/register --extension ts",
"prepack": "npm run build:production",
"analyze": "cross-env TS_NODE_PROJECT=\"webpack.tsconfig.json\" npx webpack --config webpack/analyze.ts"
},
"keywords": [
"async",
"signal"
],
"author": "EvoCount GmbH",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.3",
"@types/webpack": "^5.28.0",
"@types/webpack-bundle-analyzer": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^7.26.0",
"mocha": "^8.4.0",
"ts-loader": "^9.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.37.0",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.7.0"
}
}