@taqueria/plugin-ligo 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +3 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taqueria/plugin-ligo",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "A taqueria plugin for compiling LIGO smart contracts",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -8,17 +8,8 @@
8
8
  "build-ci": "npm run build",
9
9
  "pluginInfo": "node index.js --taqRun pluginInfo --i18n '{\"foo\":\"bar\"}' --config '{\"contractsDir\":\"contracts\",\"testsDir\": \"tests\",\"artifactsDir\": \"artifacts\"}' --projectDir ../test-project --configDir ./.taq",
10
10
  "compile": "node index.js --taqRun proxy --task compile --i18n '{\"foo\":\"bar\"}' --config '{\"contractsDir\":\"contracts\",\"testsDir\": \"tests\",\"artifactsDir\": \"artifacts\"}' --projectDir ../test-project --configDir ./.taq",
11
- "debugPluginInfo": "node --inspect index.js --taqRun pluginInfo --i18n '{\"foo\":\"bar\"}' --config '{\"contractsDir\":\"contracts\",\"testsDir\": \"tests\"}' --projectDir ../test-project --configDir ./.taq",
12
- "get-sdk-version": "cd ../taqueria-sdk && node -e 'console.log(require(\"./package.json\").version)'",
13
- "backup-config": "cp package.json package.json.orig && cp package-lock.json package-lock.json.orig",
14
- "restore-config": "mv package.json.orig package.json && mv package-lock.json.orig package-lock.json",
15
- "update-sdk-version": "sed -i -e \"s/file:\\.\\.\\/taqueria-sdk/`npm run get-sdk-version | tail -1`/\" package.json",
16
- "update-sdk-version-lock": "sed -i -e \"s/file:\\.\\.\\/taqueria-sdk/`npm run get-sdk-version | tail -1`/\" package-lock.json",
17
- "prod-config": "npm run backup-config && npm run update-sdk-version && npm run update-sdk-version-lock",
18
- "prod-config-ci": "npm run prod-config",
19
- "build-prod": "npm run backup-config && npm run prod-config && npm run build && npm run restore-config"
11
+ "debugPluginInfo": "node --inspect index.js --taqRun pluginInfo --i18n '{\"foo\":\"bar\"}' --config '{\"contractsDir\":\"contracts\",\"testsDir\": \"tests\"}' --projectDir ../test-project --configDir ./.taq"
20
12
  },
21
-
22
13
  "keywords": [
23
14
  "taqueria",
24
15
  "tezos",
@@ -33,19 +24,17 @@
33
24
  ],
34
25
  "author": "ECAD Labs",
35
26
  "license": "Apache-2.0",
36
-
37
27
  "repository": {
38
28
  "type": "git",
39
29
  "url": "https://github.com/ecadlabs/taqueria.git",
40
30
  "directory": "taqueria-plugin-ligo"
41
31
  },
42
-
43
32
  "bugs": {
44
33
  "url": "https://github.com/ecadlabs/taqueria/issues"
45
34
  },
46
35
  "homepage": "https://github.com/ecadlabs/taqueria#readme",
47
36
  "dependencies": {
48
37
  "fast-glob": "^3.2.7",
49
- "@taqueria/node-sdk": "0.0.1"
38
+ "@taqueria/node-sdk": "^0.0.1"
50
39
  }
51
40
  }