-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.17 KB
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
{
"name": "typeswift",
"version": "1.1.7",
"description": "Swift-like extensions for JavaScript and TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "commonjs",
"scripts": {
"compile": "tsc -p build/tsconfig.json && webpack -c build/webpack.config.js",
"clean": "shx rm -rf _bundles lib",
"build": "npm run clean && npm run compile",
"prepare": "npm run build",
"preview-npm-files": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"test": "jest -c tests/jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyle-n/TypeSwift.git"
},
"keywords": [
"swift",
"typescript",
"javascript"
],
"author": "Kyle Nazario",
"license": "MIT",
"bugs": {
"url": "https://github.com/kyle-n/TypeSwift/issues"
},
"homepage": "https://github.com/kyle-n/TypeSwift#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"jest": "^26.6.3",
"shx": "^0.3.3",
"ts-jest": "^26.4.4",
"typescript": "^4.5.2",
"webpack": "^5.64.2",
"webpack-cli": "^4.9.1"
},
"files": [
"lib/*",
"_bundles/*",
"package.json"
]
}