-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.5 KB
/
package.json
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
{
"name": "@codeverse/gulp-registry",
"version": "0.101.0",
"description": "A task runner to create, develop, test, and deploy code",
"main": "lib/registry.js",
"contributors": [
"Dave Arel <[email protected]>",
"ELLIOTTCABLE <[email protected]>"
],
"homepage": "http://github.com/americademy/gulp-registry",
"repository": "git://github.com/americademy/gulp-registry.git",
"license": "MIT",
"private": false,
"scripts": {
"test": "npm pack && bats test/**/*.bats",
"lint": "eslint --max-warnings 0 src",
"build": "npm run prepare",
"prepare": "babel src --out-dir lib --copy-files --source-maps true"
},
"files": [
"lib",
"src",
".prettierrc.js"
],
"directories": {
"test": "test"
},
"dependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"@codeverse/eslint-config": "^2.0.0-pre.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-bucklescript": "^0.5.3",
"babel-types": "^6.26.0",
"camelcase": "^5.0.0",
"chai": "^4.2.0",
"del": "^3.0.0",
"enquirer": "^2.3.0",
"eslint-config-prettier": "^3.1.0",
"eslint-formatter-friendly": "^6.0.0",
"eslint-plugin-prettier": "^3.0.0",
"g-status": "^2.0.2",
"gulp-babel": "^8.0.0",
"gulp-connect": "^5.5.0",
"gulp-eslint": "^5.0.0",
"gulp-filter": "^5.1.0",
"gulp-livereload": "^4.0.0",
"gulp-load-plugins": "^1.5.0",
"gulp-mocha": "^2.2.0",
"gulp-print": "^5.0.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-tap": "^1.0.1",
"gulp-typescript": "^5.0.0",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"lodash.merge": "^4.6.1",
"merge2": "^1.2.3",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"parse-packagejson-name": "^1.0.1",
"plugin-error": "^1.0.1",
"precise-commits": "^1.0.2",
"prettier": "1.14.3",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0",
"typescript": "^3.2.4",
"undertaker-registry": "^1.0.1",
"webpack": "^4.20.2",
"webpack-node-externals": "^1.7.2",
"webpack-stream": "^5.1.1",
"worker-loader": "^2.0.0"
},
"peerDependencies": {
"gulp": "^4.0.0",
"gulp-cli": "^2.0.1"
},
"devDependencies": {
"bats": "^1.1.0",
"gulp": "^4.0.0",
"gulp-cli": "^2.0.1"
}
}