-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "superset-ts",
"version": "1.0.1",
"description": "This library extends the browser Set object",
"license": "MIT",
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"scripts": {
"jest_cc": "jest --clearCache",
"prettier:fix": "prettier --write .",
"build": "tsc -p tsconfig.json && yarn build-rename-files",
"build-rename-files": "ts-node ./scripts/rename.ts",
"test": "jest"
},
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.24",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"prettier": "2.3.2",
"typescript": "^4.3.5"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+ssh//[email protected]/filipe-costa/superset-ts.git"
},
"keywords": [
"Set",
"set",
"ES6",
"filter",
"map",
"typescript"
],
"author": {
"name": "Filipe Costa",
"url": "https://github.com/filipe-costa/"
},
"bugs": {
"url": "https://github.com/filipe-costa/superset-ts/issues"
},
"homepage": "https://github.com/filipe-costa/superset-ts#readme",
"files": [
"/lib"
]
}