-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "typescript-structures",
"version": "0.0.0-development",
"scripts": {
"build": "rm -R './dist' && rollup -c",
"start": "node dist/bundle_esm.js",
"test": "jest"
},
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"typings": "dist/index.d.ts",
"files": [
"/dist"
],
"dependencies": {
"@types/deep-equal": "^1.0.1",
"@types/jest": "^26.0.23",
"deep-equal": "^2.0.5",
"rollup": "^2.47.0",
"ttypescript": "^1.5.12"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-json": "^4.1.0",
"@semantic-release/npm": "^8.0.2",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-jest": "^26.6.3",
"eslint-config-prettier": "^8.2.0",
"jest": "^26.6.3",
"prettier": "2.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
}
}