-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "@dartnative/codegen",
"version": "2.0.2",
"type": "module",
"description": "Code generator for dart_native.",
"main": "index.js",
"bin": {
"codegen": "bin/codegen.js"
},
"engines": {
"node": ">=14.16"
},
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"pretest": "git clone -b develop https://github.com/dart-native/dart_native.git",
"test": "codegen dart_native/dart_native/example/ios/Runner/RuntimeStub.h -o test/dart/ --project-name my_package -t plugin",
"posttest": "node test/test.js dart_native/dart_native/example/lib/ios/runtimestub.dart test/dart/my_package/lib/objc/runtimestub.dart"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dart-native/codegen.git"
},
"keywords": [],
"author": "DartNative team",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dart-native/codegen/issues"
},
"homepage": "https://github.com/dart-native/codegen#readme",
"dependencies": {
"antlr4": "^4.9.1",
"commander": "^5.1.0",
"js-yaml": "^4.1.1"
},
"devDependencies": {}
}