-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "ts-yamp",
"version": "1.0.2",
"description": "yet another mixin pattern",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/tape -r ts-node/register './**/*.test.ts' | ./node_modules/.bin/tap-summary",
"lint": "./node_modules/.bin/eslint . --ext .ts",
"bundle": "./node_modules/.bin/rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ydarma/ts-yamp.git"
},
"author": "Yves Darmaillac",
"license": "MIT",
"bugs": {
"url": "https://github.com/ydarma/ts-yamp/issues"
},
"homepage": "https://github.com/ydarma/ts-yamp#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/tape": "^4.13.0",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"@wessberg/rollup-plugin-ts": "^1.3.8",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"rollup": "^2.33.1",
"tap-summary": "^4.0.0",
"tape": "^5.0.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}