-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "pythonic-ts",
"version": "1.0.7",
"description": "A collection of Python-style utility functions for iterators and collections",
"type": "module",
"module": "dist/index.js",
"main": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"test": "jest --coverage",
"lint": "eslint './src/**/*.{ts,tsx}'",
"build": "yarn build:js && yarn build:types",
"build:js": "rollup -c",
"build:types": "tsc --build tsconfig.build.json",
"build:docs": "typedoc"
},
"author": "Paul Grau <paul@graycoding.com>",
"license": "MIT",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.9.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.13.0",
"jest": "^26.6.3",
"rollup": "^2.44.0",
"rollup-plugin-node-externals": "^2.2.0",
"ts-dedent": "^2.0.0",
"ts-jest": "^26.4.4",
"typedoc": "^0.20.35",
"typescript": "^4.2.4"
}
}