-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
83 lines (83 loc) · 3.43 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "pesy",
"version": "0.5.0-dev.23",
"bin": {
"pesy": "pesy"
},
"esy": {
"install": [
"mkdir #{self.install / 'bin' / 'azure-ci-template'}",
"cp #{self.root / 'v0.4.4' / 'azure-ci-template' / 'azure-pipelines.yml'} #{self.install / 'bin' / 'azure-ci-template/' / 'azure-pipelines.yml'}",
"cp #{self.root / 'v0.4.4' / 'azure-ci-template' / 'esy-build-steps.template.yml'} #{self.install / 'bin' / 'azure-ci-template/' / 'esy-build-steps.template.yml'}",
"cp #{self.root / 'v0.4.4' / 'azure-ci-template' / 'publish-build-cache.yml'} #{self.install / 'bin' / 'azure-ci-template/' / 'publish-build-cache.yml'}",
"cp #{self.root / 'v0.4.4' / 'azure-ci-template' / 'restore-build-cache.yml'} #{self.install / 'bin' / 'azure-ci-template/' / 'restore-build-cache.yml'}",
"cp #{self.root / 'v0.4.4' / 'pesy'} #{self.install / 'bin' / 'pesy'}",
"cp #{self.root / 'v0.4.4' / 'pesy-header.sh'} #{self.install / 'bin' / 'pesy-header.sh'}",
"cp #{self.root / 'v0.4.4' / 'pesy-footer.template.sh'} #{self.install / 'bin' / 'pesy-footer.template.sh'}",
"cp #{self.root / 'v0.4.4' / 'pesy-genBin.template.sh'} #{self.install / 'bin' / 'pesy-genBin.template.sh'}",
"cp #{self.root / 'v0.4.4' / 'pesy-genLib.template.sh'} #{self.install / 'bin' / 'pesy-genLib.template.sh'}",
"cp #{self.root / 'v0.4.4' / 'pesy-JSON.sh'} #{self.install / 'bin' / 'pesy-JSON.sh'}",
"cp #{self.root / 'v0.4.4' / 'pesy-create.sh'} #{self.install / 'bin' / 'pesy-create.sh'}",
"cp #{self.root / 'v0.4.4' / 'pesy-name-utils.sh'} #{self.install / 'bin' / 'pesy-name-utils.sh'}",
"cp #{self.root / 'v0.4.4' / 'pesy-gitignore.template'} #{self.install / 'bin' / 'pesy-gitignore.template'}",
"cp #{self.root / 'v0.4.4' / 'pesy-package.template.json'} #{self.install / 'bin' / 'pesy-package.template.json'}",
"cp #{self.root / 'v0.4.4' / 'pesy-README.template.md'} #{self.install / 'bin' / 'pesy-README.template.md'}"
]
},
"scripts": {
"rollup": "rollup -c rollup.config.js",
"rollup:watch": "rollup -c rollup.config.js -w",
"docs": "bsdoc build pesy",
"bsb": "bsb -make-world",
"build": "yarn run bsb && yarn run rollup",
"package": "node scripts/vendor-template.js && yarn run build",
"prettier": "prettier --single-quote --trailing-comma es5 --write src/**.js",
"test": "yarn run build && jest --coverage",
"bsb:watch": "bsb -make-world -w",
"bsb:clean": "bsb -clean-world"
},
"keywords": [
"esy",
"pesy",
"reason",
"ocaml"
],
"files": [
"package.json",
"pesy",
"pesy.bundle.js",
"templates/",
"stubs/",
"v0.4.4/"
],
"license": "MIT",
"devDependencies": {
"@glennsl/bs-json": "^5.0.2",
"@glennsl/bs-jest": "^0.5.0",
"@prometheansacrifice/bs-cmdliner": "1.0.4000",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"bs-platform": "7.0.1",
"prettier": "^1.19.1",
"rollup": "^1.16.2",
"tablecloth-bucklescript": "0.0.6",
"bsdoc": "*"
},
"bugs": {
"url": "https://github.com/esy/pesy/issues"
},
"homepage": "https://github.com/esy/pesy#readme",
"dependencies": {
"chalk": "^3.0.0",
"download-git-repo": "^2.0.0",
"request": "^2.88.2",
"request-progress": "^3.0.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.16",
"walk-sync": "^2.0.2"
},
"resolutions": {
"mkdirp": "1.0.3"
}
}