-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
55 lines (55 loc) · 1.25 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
53
54
55
{
"name": "objc2swift",
"version": "0.2.1",
"description": "Objective-C to Swift Converter",
"main": "src/main.js",
"files": [
"bin",
"src",
"package.json",
"LICENSE",
"README.md"
],
"bin": {
"objc2swift": "bin/cmd.js"
},
"dependencies": {
"fs-extra": "^0.26.5",
"glob": "^6.0.4",
"node-getopt": "^0.3.2"
},
"devDependencies": {
"diff": "^5.0.0",
"http-server": "^14.1.1",
"pegjs": "^0.10.0",
"process": "^0.11.10",
"util": "^0.12.5",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-pp-parser": "pegjs -o ./src/preprocess-parser.js ./grammar/preprocess.pegjs",
"build-parser": "pegjs -o ./src/parser.js ./grammar/objc.pegjs",
"build": "npm run build-parser && npm run build-pp-parser",
"server": "http-server -c 0 -o ./docs",
"webpack": "webpack"
},
"keywords": [
"pegjs",
"objective-c",
"objectivec",
"objc",
"swift"
],
"repository": {
"type": "git",
"url": "https://github.com/okaxaki/objc2swift"
},
"homepage": "http://okaxaki.github.io/objc2swift/",
"author": "Mitsutaka Okazaki",
"license": "ISC",
"engines": {
"node": ">=10.0.0"
}
}