-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@angstone/devkit",
"version": "0.0.5",
"description": "Angstone Devkit",
"main": "dist/index.js",
"scripts": {
"start": "node dist/app.js",
"clean": "node_modules/.bin/rimraf ./dist",
"build": "npm run clean && ./node_modules/typescript/bin/tsc",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"dev": "node_modules/.bin/nodemon --config nodemon-dev.json",
"test": "node_modules/.bin/nodemon --config nodemon-test.json",
"test:mocha": "node_modules/.bin/mocha",
"test:coverage": "node_modules/.bin/nyc npm run test:mocha"
},
"keywords": [
"cement",
"backend",
"eventstore",
"events",
"node"
],
"author": "ssribeiro",
"license": "ISC",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.21",
"@types/chai-like": "^1.1.1",
"@types/chai-things": "0.0.34",
"@types/chalk": "^2.2.0",
"@types/mocha": "^8.2.2",
"@types/node": "^14.17.3",
"@types/sinon": "^9.0.11",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"chai": "^4.3.4",
"chai-like": "^1.1.1",
"chai-things": "^0.2.0",
"clear-module": "^4.1.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"sinon": "^9.2.4",
"sinon-chai": "^3.7.0",
"ts-node": "^9.1.1",
"typescript": "^4.3.4"
},
"dependencies": {
"@angstone/cement-basic": "^2.0.2",
"@angstone/insane": "^2.7.0",
"country-currency": "^1.0.1",
"currency-symbol-map": "^5.0.1",
"dotenv": "^10.0.0",
"iso-3166-1-codes": "^1.2.0"
}
}