Cleanup some package.json cruft
This commit is contained in:
parent
fc492d39f7
commit
37d9c2ed79
@ -5,21 +5,6 @@
|
|||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"jsnext:main": "src/index.js",
|
"jsnext:main": "src/index.js",
|
||||||
"files": ["dist", "lib", "src"],
|
"files": ["dist", "lib", "src"],
|
||||||
"keywords": ["reactive"],
|
|
||||||
"author": "Timothy Farrell <tim@thecookiejar.me> (https://github.com/explorigin)",
|
|
||||||
"license": "Apache-2.0",
|
|
||||||
"devDependencies": {
|
|
||||||
"babel-cli": "6.18.0",
|
|
||||||
"babel-core": "6.21.0",
|
|
||||||
"babel-preset-es2015": "6.18.0",
|
|
||||||
"babel-preset-es2015-rollup": "3.0.0",
|
|
||||||
"babel-preset-stage-0": "6.16.0",
|
|
||||||
"eslint": "3.12.2",
|
|
||||||
"jasmine": "^2.5.3",
|
|
||||||
"rimraf": "2.5.4",
|
|
||||||
"rollup-plugin-babel": "^2.7.1",
|
|
||||||
"rollup-plugin-json": "2.1.0"
|
|
||||||
},
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist lib",
|
"clean": "rimraf dist lib",
|
||||||
"build:lib": "NODE_ENV=production babel src --presets=\"stage-0,es2015\" --out-dir lib",
|
"build:lib": "NODE_ENV=production babel src --presets=\"stage-0,es2015\" --out-dir lib",
|
||||||
@ -32,5 +17,19 @@
|
|||||||
"prepublish": "npm run clean && npm run build",
|
"prepublish": "npm run clean && npm run build",
|
||||||
"test": "npm run build:lib && jasmine",
|
"test": "npm run build:lib && jasmine",
|
||||||
"uglifyjs": "2.4.10"
|
"uglifyjs": "2.4.10"
|
||||||
|
},
|
||||||
|
"keywords": ["reactive"],
|
||||||
|
"author": "Timothy Farrell <tim@thecookiejar.me> (https://github.com/explorigin)",
|
||||||
|
"license": "Apache-2.0",
|
||||||
|
"devDependencies": {
|
||||||
|
"babel-cli": "6.18.0",
|
||||||
|
"babel-core": "6.21.0",
|
||||||
|
"babel-preset-es2015": "6.18.0",
|
||||||
|
"babel-preset-es2015-rollup": "3.0.0",
|
||||||
|
"babel-preset-stage-0": "6.16.0",
|
||||||
|
"jasmine": "^2.5.3",
|
||||||
|
"rimraf": "2.5.4",
|
||||||
|
"rollup-plugin-babel": "^2.7.1",
|
||||||
|
"rollup-plugin-json": "2.1.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "worker-portal",
|
"name": "portal",
|
||||||
"version": "0.8.0",
|
"version": "0.8.0",
|
||||||
"description": "Expose an API to a web worker and its parent",
|
"description": "Expose an API to a web worker and its parent",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
@ -18,25 +18,15 @@
|
|||||||
"prepublish": "npm run clean && npm run build",
|
"prepublish": "npm run clean && npm run build",
|
||||||
"test": "npm run build:lib && jasmine --verbose"
|
"test": "npm run build:lib && jasmine --verbose"
|
||||||
},
|
},
|
||||||
"repository": {
|
"keywords": ["worker", "webworker"],
|
||||||
"type": "git",
|
|
||||||
"url": "https://gitlab.com/explorigin/worker-portal.git"
|
|
||||||
},
|
|
||||||
"keywords": ["javascript", "worker", "webworker", "promise"],
|
|
||||||
"author": "Timothy Farrell <tim@thecookiejar.me> (https://github.com/explorigin)",
|
"author": "Timothy Farrell <tim@thecookiejar.me> (https://github.com/explorigin)",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"bugs": {
|
|
||||||
"url": "https://gitlab.com/explorigin/worker-portal/issues"
|
|
||||||
},
|
|
||||||
"homepage": "https://gitlab.com/explorigin/worker-portal",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"babel-cli": "6.18.0",
|
"babel-cli": "6.18.0",
|
||||||
"babel-core": "6.21.0",
|
"babel-core": "6.21.0",
|
||||||
"babel-eslint": "7.1.1",
|
|
||||||
"babel-preset-es2015": "6.18.0",
|
"babel-preset-es2015": "6.18.0",
|
||||||
"babel-preset-es2015-rollup": "3.0.0",
|
"babel-preset-es2015-rollup": "3.0.0",
|
||||||
"babel-preset-stage-0": "6.16.0",
|
"babel-preset-stage-0": "6.16.0",
|
||||||
"eslint": "3.12.2",
|
|
||||||
"jasmine": "^2.5.3",
|
"jasmine": "^2.5.3",
|
||||||
"rimraf": "2.5.4",
|
"rimraf": "2.5.4",
|
||||||
"rollup-plugin-babel": "^2.7.1",
|
"rollup-plugin-babel": "^2.7.1",
|
||||||
|
|||||||
@ -17,25 +17,15 @@
|
|||||||
"prepublish": "npm run clean && npm run build",
|
"prepublish": "npm run clean && npm run build",
|
||||||
"test": "npm run build:lib && jasmine --verbose"
|
"test": "npm run build:lib && jasmine --verbose"
|
||||||
},
|
},
|
||||||
"repository": {
|
"keywords": ["router"],
|
||||||
"type": "git",
|
|
||||||
"url": "https://gitlab.com/explorigin/router.git"
|
|
||||||
},
|
|
||||||
"keywords": ["javascript"],
|
|
||||||
"author": "Timothy Farrell <tim@thecookiejar.me> (https://github.com/explorigin)",
|
"author": "Timothy Farrell <tim@thecookiejar.me> (https://github.com/explorigin)",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"bugs": {
|
|
||||||
"url": "https://gitlab.com/explorigin/router/issues"
|
|
||||||
},
|
|
||||||
"homepage": "https://gitlab.com/explorigin/router",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"babel-cli": "6.18.0",
|
"babel-cli": "6.18.0",
|
||||||
"babel-core": "6.21.0",
|
"babel-core": "6.21.0",
|
||||||
"babel-eslint": "7.1.1",
|
|
||||||
"babel-preset-es2015": "6.18.0",
|
"babel-preset-es2015": "6.18.0",
|
||||||
"babel-preset-es2015-rollup": "3.0.0",
|
"babel-preset-es2015-rollup": "3.0.0",
|
||||||
"babel-preset-stage-0": "6.16.0",
|
"babel-preset-stage-0": "6.16.0",
|
||||||
"eslint": "3.2.0",
|
|
||||||
"jasmine": "^2.5.3",
|
"jasmine": "^2.5.3",
|
||||||
"rimraf": "2.5.4",
|
"rimraf": "2.5.4",
|
||||||
"rollup-plugin-json": "2.1.0",
|
"rollup-plugin-json": "2.1.0",
|
||||||
|
|||||||
@ -17,25 +17,15 @@
|
|||||||
"build": "npm run build:umd:gzip && ls -l dist/",
|
"build": "npm run build:umd:gzip && ls -l dist/",
|
||||||
"prepublish": "npm run clean && npm run build"
|
"prepublish": "npm run clean && npm run build"
|
||||||
},
|
},
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://gitlab.com/explorigin/trimkit.git"
|
|
||||||
},
|
|
||||||
"keywords": ["javascript"],
|
"keywords": ["javascript"],
|
||||||
"author": "Timothy Farrell <tim@thecookiejar.me> (https://github.com/explorigin)",
|
"author": "Timothy Farrell <tim@thecookiejar.me> (https://github.com/explorigin)",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"bugs": {
|
|
||||||
"url": "https://gitlab.com/explorigin/trimkit/issues"
|
|
||||||
},
|
|
||||||
"homepage": "https://gitlab.com/explorigin/trimkit",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"babel-cli": "6.18.0",
|
"babel-cli": "6.18.0",
|
||||||
"babel-core": "6.21.0",
|
"babel-core": "6.21.0",
|
||||||
"babel-eslint": "7.1.1",
|
|
||||||
"babel-preset-es2015": "6.18.0",
|
"babel-preset-es2015": "6.18.0",
|
||||||
"babel-preset-es2015-rollup": "3.0.0",
|
"babel-preset-es2015-rollup": "3.0.0",
|
||||||
"babel-preset-stage-0": "6.16.0",
|
"babel-preset-stage-0": "6.16.0",
|
||||||
"eslint": "3.2.0",
|
|
||||||
"rimraf": "2.5.4",
|
"rimraf": "2.5.4",
|
||||||
"rollup-plugin-json": "2.1.0",
|
"rollup-plugin-json": "2.1.0",
|
||||||
"uglifyjs": "2.4.10"
|
"uglifyjs": "2.4.10"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user