-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"name": "@carwin/flag-generator",
"version": "1.0.1",
"repository": "git://github.com/carwin/flag-generator.git",
"description": "A flag generator",
"main": "dist/flag-gen.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"test": "jest --coverage",
"build:dev": "webpack --config webpack.dev.babel.js",
"build:prod": "webpack --config webpack.prod.babel.js",
"watch": "webpack --config webpack.dev.babel.js --watch",
"predeploy": "npm run build:dev",
"deploy": "gh-pages -d docs --remote github"
},
"keywords": [
"flag"
],
"author": "Carwin Young",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/register": "^7.12.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.1",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-rewire": "^1.2.0",
"clean-webpack-plugin": "^3.0.0",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"esdoc-webpack-plugin": "^1.0.1",
"eslint": "^7.14.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jsdoc": "^30.7.8",
"gh-pages": "^3.1.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.0",
"lodash": "^4.17.20",
"rewire": "^5.0.0",
"seedrandom": "^3.0.5",
"sockjs-client": "^1.5.0",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.4.0"
},
"dependencies": {
"tinycolor2": "^1.4.2"
},
"jest": {
"setupFiles": [
"jest-canvas-mock"
]
}
}