5 Commits

Author SHA1 Message Date
1cd86620ae 2.0.3 2018-08-27 23:23:29 +02:00
ca156c31b8 fix(dependencies): remove obsolete typings-global import 2018-08-27 23:23:28 +02:00
ea3a6341be 2.0.2 2018-08-27 01:31:14 +02:00
f8a0f110c2 fix(CI): update npmextra npmAccessLevel 2018-08-27 01:31:14 +02:00
71f00a3a6f 2.0.1 2018-08-26 20:24:15 +02:00
4 changed files with 16 additions and 11 deletions

View File

@ -1,6 +1,6 @@
{
"npmci": {
"globalNpmTools": [],
"npmAccessLevel": true
"npmAccessLevel": "public"
}
}
}

20
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "smartyaml",
"version": "2.0.0",
"name": "@pushrocks/smartyaml",
"version": "2.0.3",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -258,7 +258,6 @@
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
"dev": true,
"requires": {
"sprintf-js": "~1.0.2"
}
@ -430,8 +429,7 @@
"esprima": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
"dev": true
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
},
"figures": {
"version": "2.0.0",
@ -539,6 +537,15 @@
"integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
"dev": true
},
"js-yaml": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz",
"integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==",
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
}
},
"jsonfile": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
@ -731,8 +738,7 @@
"sprintf-js": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
"dev": true
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
},
"string_decoder": {
"version": "1.1.1",

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartyaml",
"version": "2.0.0",
"version": "2.0.3",
"private": false,
"description": "handle yaml in smart ways",
"main": "dist/index.js",

View File

@ -1,4 +1,3 @@
import 'typings-global';
import * as jsYaml from 'js-yaml';
export { jsYaml };