-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.34 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
{
"version": "0.2.3",
"name": "chai-latte",
"description": "Build expressive & readable fluent interface libraries.",
"main": "build/index.js",
"typings": "build/index.d.ts",
"bin": {
"chai-latte": "./build/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iliasbhal/chai-latte.git"
},
"keywords": [
"chai",
"latte",
"fluent",
"expressive",
"interface",
"library"
],
"author": "Ilias Bhallil <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iliasbhal/chai-latte/issues"
},
"homepage": "https://github.com/iliasbhal/chai-latte",
"scripts": {
"setup": "yarn build && npm link && npm link chai-latte",
"dev": "yarn setup && yarn build:watch",
"deploy": "yarn test && yarn build && npm publish",
"test": "jest",
"build": "tsc",
"build:watch": "tsc -w"
},
"peerDependencies": {},
"dependencies": {
"chokidar": "^3.5.3",
"commander": "^9.4.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@jest/types": "^28.1.3",
"@types/dedent": "^0.7.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.4",
"dedent": "^0.7.0",
"fs-extra": "^10.0.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.2.3"
}
}