Skip to content

Commit

Permalink
chore: update license to MIT and sort package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Jun 27, 2019
1 parent 7bd563a commit 2b6ac84
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
{
"name": "@nuxt/devalue",
"description": "Gets the job done when JSON.stringify can't",
"version": "1.2.3",
"description": "Gets the job done when JSON.stringify can't",
"repository": "nuxt-community/devalue",
"main": "dist/devalue.cjs.js",
"module": "dist/devalue.esm.js",
"browser": "dist/devalue.js",
"types": "types/index.d.ts",
"license": "MIT",
"files": [
"dist",
"types"
],
"main": "dist/devalue.cjs.js",
"module": "dist/devalue.esm.js",
"browser": "dist/devalue.js",
"types": "types/index.d.ts",
"scripts": {
"build": "npm run build-declarations && rollup -c",
"build-declarations": "tsc -d && node scripts/move-type-declarations.js",
"prepublishOnly": "npm run build && npm test",
"test": "mocha --opts mocha.opts"
},
"dependencies": {
"consola": "^2.5.6"
},
Expand All @@ -26,12 +33,5 @@
"ts-node": "^8.0.2",
"tslib": "^1.9.3",
"typescript": "^3.3.3333"
},
"scripts": {
"build-declarations": "tsc -d && node scripts/move-type-declarations.js",
"build": "npm run build-declarations && rollup -c",
"test": "mocha --opts mocha.opts",
"prepublishOnly": "npm run build && npm test"
},
"license": "LIL"
}
}

0 comments on commit 2b6ac84

Please sign in to comment.