-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.43 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
64
65
66
67
68
69
70
71
72
73
{
"name": "stamp",
"version": "0.1.0",
"license": "MIT",
"description": "The stamp ecosystem",
"author": "",
"contributors": [
"Vasyl Boroviak <[email protected]> (https://twitter.com/kore_sar)",
"Tim Routowicz <[email protected]> (https://twitter.com/troutowicz)",
"Carl Olsen <[email protected]> (https://twitter.com/unstoppableCarl)",
"Daniel K. <[email protected]> (https://twitter.com/FredyCrueger)",
"Christopher Hiller <[email protected]> (https://twitter.com/b0neskull)",
"PopGoesTheWza (https://github.com/PopGoesTheWza)"
],
"repository": {
"type": "git",
"url": "[email protected]:stampit-org/stamp.git"
},
"scripts": {
"build": "lerna run build",
"build-clean": "del-cli **/*.tsbuildinfo & npm run build",
"ci": "npm run test",
"test": "jest",
"posttest": "npm run lint",
"postinstall": "npm run build-clean",
"publish": "lerna publish -i -- --access=public",
"updated": "lerna updated",
"clean": "lerna clean",
"lint": "npm run lint-ts & npm run lint-js",
"lint-js": "eslint --no-eslintrc --config .eslintrc-js.json --ext .js --ignore-path .eslintignore-js packages",
"lint-js-fix": "eslint --config .eslintrc-js.json --ext .js --fix --ignore-path .eslintignore-js packages",
"lint-ts": "eslint --ext .ts --ignore-path .eslintignore packages",
"lint-ts-fix": "eslint --config .eslintrc.json --ext .ts --fix --ignore-path .eslintignore packages",
"lint-fix": "npm run lint-ts-fix & npm run lint-js-fix"
},
"engines": {
"node": ">= 10.18.0"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"del-cli": "^3.0.0",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"lerna": "^6.4.0",
"prettier": "^2.8.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"coverageReporters": [
"html",
"text"
]
},
"dependencies": {
"@stamp/compose": "^1.0.2"
},
"workspaces": [
"./packages/*"
]
}