1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
| {
| "_from": "runjs@4.3.2",
| "_id": "runjs@4.3.2",
| "_inBundle": false,
| "_integrity": "sha512-HPXoaK7Dop2z4nb+EGkwvT5v5zz2Kl79e4jN5Eugt8CPHvtJyCx/5T/Y9FLdLWX951OnW192OHVT+4ymIlK2BQ==",
| "_location": "/runjs",
| "_phantomChildren": {
| "color-convert": "1.9.3",
| "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.npmmirror.com/runjs/-/runjs-4.3.2.tgz",
| "_shasum": "fca376728bc01cd66cce734f3b41640de29f52ad",
| "_spec": "runjs@4.3.2",
| "_where": "D:\\源码\\vue-element-admin-master",
| "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"
| }
|
|