You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
3.1 KiB
122 lines
3.1 KiB
3 years ago
|
{
|
||
|
"_from": "runjs@4.3.2",
|
||
|
"_id": "runjs@4.3.2",
|
||
|
"_inBundle": false,
|
||
|
"_integrity": "sha512-HPXoaK7Dop2z4nb+EGkwvT5v5zz2Kl79e4jN5Eugt8CPHvtJyCx/5T/Y9FLdLWX951OnW192OHVT+4ymIlK2BQ==",
|
||
|
"_location": "/runjs",
|
||
|
"_phantomChildren": {
|
||
|
"ansi-styles": "3.2.1",
|
||
|
"escape-string-regexp": "1.0.5"
|
||
|
},
|
||
|
"_requested": {
|
||
|
"type": "version",
|
||
|
"registry": true,
|
||
|
"raw": "runjs@4.3.2",
|
||
|
"name": "runjs",
|
||
|
"escapedName": "runjs",
|
||
|
"rawSpec": "4.3.2",
|
||
|
"saveSpec": null,
|
||
|
"fetchSpec": "4.3.2"
|
||
|
},
|
||
|
"_requiredBy": [
|
||
|
"#DEV:/"
|
||
|
],
|
||
|
"_resolved": "https://registry.npmjs.org/runjs/-/runjs-4.3.2.tgz",
|
||
|
"_shasum": "fca376728bc01cd66cce734f3b41640de29f52ad",
|
||
|
"_spec": "runjs@4.3.2",
|
||
|
"_where": "F:\\workspace\\gcy\\RK-html\\RK-project\\ruoyi-ui",
|
||
|
"author": {
|
||
|
"name": "Pawel Galazka"
|
||
|
},
|
||
|
"babel": {
|
||
|
"plugins": [
|
||
|
"transform-es2015-modules-commonjs"
|
||
|
],
|
||
|
"presets": [
|
||
|
"flow"
|
||
|
]
|
||
|
},
|
||
|
"bin": {
|
||
|
"run": "bin/run.js"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/pawelgalazka/runjs/issues"
|
||
|
},
|
||
|
"bundleDependencies": false,
|
||
|
"dependencies": {
|
||
|
"chalk": "2.3.0",
|
||
|
"lodash.padend": "4.6.1",
|
||
|
"microcli": "1.3.1",
|
||
|
"omelette": "0.4.5"
|
||
|
},
|
||
|
"deprecated": false,
|
||
|
"description": "Minimalistic building tool",
|
||
|
"devDependencies": {
|
||
|
"babel-cli": "6.26.0",
|
||
|
"babel-eslint": "8.0.1",
|
||
|
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
|
||
|
"babel-preset-flow": "6.23.0",
|
||
|
"eslint": "4.10.0",
|
||
|
"eslint-config-prettier": "2.7.0",
|
||
|
"eslint-plugin-flowtype": "2.39.1",
|
||
|
"eslint-plugin-prettier": "2.3.1",
|
||
|
"flow-bin": "0.58.0",
|
||
|
"husky": "0.14.3",
|
||
|
"jest": "22.4.2",
|
||
|
"lint-staged": "4.3.0",
|
||
|
"prettier": "1.7.4"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=6.11.1"
|
||
|
},
|
||
|
"homepage": "https://github.com/pawelgalazka/runjs#readme",
|
||
|
"jest": {
|
||
|
"testEnvironment": "node",
|
||
|
"collectCoverageFrom": [
|
||
|
"src/**/*.js",
|
||
|
"bin/**/*.js"
|
||
|
],
|
||
|
"coverageReporters": [
|
||
|
"text"
|
||
|
],
|
||
|
"coverageThreshold": {
|
||
|
"global": {
|
||
|
"lines": 55
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"keywords": [
|
||
|
"build",
|
||
|
"system",
|
||
|
"make",
|
||
|
"tool"
|
||
|
],
|
||
|
"license": "MIT",
|
||
|
"lint-staged": {
|
||
|
"*.js": [
|
||
|
"eslint --fix",
|
||
|
"git add"
|
||
|
]
|
||
|
},
|
||
|
"main": "lib/index.js",
|
||
|
"name": "runjs",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/pawelgalazka/runjs.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"build": "babel src/ --out-dir lib/",
|
||
|
"clean": "rm -rf node_modules && yarn sandbox:clean",
|
||
|
"lint": "eslint src/** bin/run.js test/**",
|
||
|
"precommit": "lint-staged",
|
||
|
"sandbox:clean": "rm -rf ./test/e2e/sandbox/node_modules && mkdir -p ./test/e2e/sandbox/node_modules/.bin",
|
||
|
"sandbox:dev": "yarn sandbox:clean && ln -s ../../../../ ./test/e2e/sandbox/node_modules/runjs",
|
||
|
"sandbox:prod": "yarn sandbox:clean && (cd ./test/e2e/sandbox && yarn add runjs)",
|
||
|
"test": "yarn lint && flow check && yarn build && yarn sandbox:dev && jest ./test --coverage",
|
||
|
"test:e2e": "jest ./test/e2e/",
|
||
|
"test:prod": "yarn sandbox:setup:prod && jest ./test/e2e/",
|
||
|
"test:unit": "jest ./test/unit/"
|
||
|
},
|
||
|
"version": "4.3.2"
|
||
|
}
|