-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
39 lines (39 loc) · 1.5 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
{
"name": "MetaCodable",
"version": "1.4.0",
"summary": "Supercharge Swift's Codable implementations with macros.",
"description": "MetaCodable exposes custom macros which can be used to generate dynamic Codable implementations.",
"homepage": "https://github.com/SwiftyLab/MetaCodable",
"license": "MIT",
"author": {
"name": "Soumya Ranjan Mahunt",
"email": "soumya.mahunt@gmail.com",
"url": "https://twitter.com/soumya_mahunt"
},
"pods": [
"MetaCodableMacro",
"MetaCodableHelperCoders",
"MetaCodableMacroPluginCore",
"MetaCodableMacroPlugin",
"MetaCodable"
],
"repository": {
"type": "git",
"url": "https://github.com/SwiftyLab/MetaCodable.git"
},
"private": true,
"dependencies": {
"swiftylab-ci": "github:SwiftyLab/ci"
},
"scripts": {
"build": "npm exec --package=swiftylab-ci -- build.mjs",
"test": "METACODABLE_CI=true npm exec --package=swiftylab-ci -- test.mjs",
"archive": "echo implement",
"generate": "echo implement",
"format": "METACODABLE_CI=true npm exec --package=swiftylab-ci -- format.mjs",
"pod-lint": "Utils/pod_lint.rb",
"preview-doc": "METACODABLE_CI=true SPI_GENERATE_DOCS=true npm exec --package=swiftylab-ci -- preview-doc.mjs MetaCodable",
"build-doc": "METACODABLE_CI=true SPI_GENERATE_DOCS=true npm exec --package=swiftylab-ci -- build-doc.mjs MetaCodable HelperCoders",
"serve-doc": "METACODABLE_CI=true SPI_GENERATE_DOCS=true npm exec --package=swiftylab-ci -- serve-doc.mjs MetaCodable"
}
}