-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
37 lines (37 loc) · 888 Bytes
/
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
{
"name": "node-swift",
"version": "1.0.0",
"repository": "kabiroberai/node-swift",
"description": "Support for creating Node modules in Swift",
"bin": "./lib/cli.js",
"main": "./lib/builder.js",
"scripts": {
"test": "node test",
"build": "tsc",
"prepare": "npm run build",
"lint": "eslint ."
},
"files": [
"lib",
"Sources",
"vendored",
"Package.swift"
],
"author": "Kabir Oberai",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^9.1.0",
"typescript": "^4.4.2"
},
"dependencies": {
"import-cwd": "^3.0.0"
},
"private": true
}