-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 3.19 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 3.19 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "typenative",
"version": "0.0.20",
"description": "Build native applications using Typescript.",
"type": "module",
"bin": {
"typenative": "bin/index.js"
},
"types": "./index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "node ./test/test-runner test",
"release": "npm publish",
"test1": "node ./bin/index --source test/test1.spec.ts --script",
"test2": "node ./bin/index --source test/test2.spec.ts --script",
"test3": "node ./bin/index --source test/test3.spec.ts --script",
"test3_node": "tsc test/test3.spec.ts && node test/test3.spec.js && rimraf test/test3.spec.js",
"test4": "node ./bin/index --source test/test4.spec.ts --script",
"test5": "node ./bin/index --source test/test5.spec.ts --script",
"test6": "node ./bin/index --source test/test6.spec.ts --script",
"test7": "node ./bin/index --source test/test7.spec.ts --script",
"test8": "node ./bin/index --source test/test8.spec.ts --script",
"test9": "node ./bin/index --source test/test9.spec.ts --script",
"test10": "node ./bin/index --source test/test10.spec.ts --script",
"test11": "node ./bin/index --source test/test11.spec.ts --script",
"test12": "node ./bin/index --source test/test12.spec.ts --script",
"test13": "node ./bin/index --source test/test13.spec.ts --script",
"test14": "node ./bin/index --source test/test14.spec.ts --script",
"test15": "node ./bin/index --source test/test15.spec.ts --script",
"test16": "node ./bin/index --source test/test16.spec.ts --script",
"test17": "node ./bin/index --source test/test17.spec.ts --script",
"test18": "node ./bin/index --source test/test18.spec.ts --script",
"test19": "node ./bin/index --source test/test19.spec.ts --script",
"test20": "node ./bin/index --source test/Test20.spec.ts --script",
"test21": "node ./bin/index --source test/Test21.spec.ts --script",
"test22": "node ./bin/index --source test/Test22.spec.ts --script",
"test23": "node ./bin/index --source test/Test23.spec.ts --script",
"test24": "node ./bin/index --source test/Test24.spec.ts --script",
"test25": "node ./bin/index --source test/Test25.spec.ts --script",
"test25_export": "node ./bin/index --source test/Test25-export.spec.ts --script",
"test26": "node ./bin/index --source test/Test26.spec.ts --script",
"test27": "node ./bin/index --source test/Test27.spec.ts --script",
"test28": "node ./bin/index --source test/test28.spec.ts --script",
"test29": "node ./bin/index --source test/test29.spec.ts --script",
"test30": "node ./bin/index --source test/test30.spec.ts --script"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danisss9/typenative.git"
},
"author": "Dani Santos",
"license": "MIT",
"bugs": {
"url": "https://github.com/danisss9/typenative/issues"
},
"homepage": "https://github.com/danisss9/typenative#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/node": "^25.3.5",
"rimraf": "^6.1.3"
},
"dependencies": {
"execa": "^9.6.1",
"fs-extra": "^11.3.4",
"inquirer": "^13.3.0",
"nanoid": "^5.1.6",
"typescript": "^5.9.3"
}
}