-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.53 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": "@appbuckets/appbuckets-phaser",
"version": "0.0.1",
"description": "AppBuckets Phaser Module",
"main": "./lib/index.js",
"scripts": {
"build": "npm run build:js:prod",
"build:dev": "npm run build:js:dev",
"prebuild": "npm run clean && npm run dtsbuild",
"prebuild:dev": "npm run clean && npm run dtsbuild",
"build:js:prod": "cross-env NODE_ENV=production babel src --out-dir lib",
"build:js:dev": "cross-env NODE_ENV=development babel src --out-dir lib",
"dtsbuild": "cpy \"**/*.d.ts\" \"../lib/\" --cwd=src --parents",
"lint": "eslint src",
"test": "cross-env NODE_ENV=test jest",
"test:coverage": "npm run test -- --coverage",
"prepublishOnly": "npm run build",
"clean": "rimraf ./lib",
"try-t": "cross-env BABEL_CONFIG=api babel-node t.js"
},
"keywords": [
"nodejs",
"utils",
"appbuckets"
],
"repository": {
"type": "git",
"url": "https://github.com/marcocavanna/appbuckets-phaser.git"
},
"author": {
"name": "Marco Cavanna",
"email": "[email protected]"
},
"files": [
"src",
"lib"
],
"engines": {
"node": ">=8.16.0"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@types/jest": "^24.0.17",
"acorn": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.9.0",
"babel-plugin-console-source": "^2.0.4",
"babel-plugin-groundskeeper-willie": "^1.3.2",
"babel-plugin-lodash": "^3.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-minify": "^0.5.0",
"core-js": "^3.2.1",
"coveralls": "^3.0.6",
"cpy-cli": "^2.0.0",
"cross-env": "^5.2.0",
"documentation": "^12.1.1",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.8.0",
"rimraf": "^2.6.3",
"standard-version": "^7.0.0"
},
"dependencies": {
"@appbuckets/rabbit": "^0.2.31",
"@babel/runtime": "^7.6.3",
"chalk": "^2.4.2",
"dayjs": "^1.8.16",
"figures": "^3.0.0",
"indent-string": "^4.0.0",
"p-queue": "^6.2.0",
"pretty-error": "^2.1.1",
"slugify": "^1.3.5",
"tinycolor2": "^1.4.1",
"wrap-ansi": "^6.0.0"
}
}