-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.25 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
{
"name": "studioled",
"version": "0.0.6",
"description": "A library to show numbers on an LED display.",
"main": "dist/studioled.umd.min.js",
"scripts": {
"test": "npm run test:coverage",
"test:coverage": "npm run test:coverage:client",
"test:coverage:client": "jest --config test/jest.client.js --coverage",
"test:coverage:server": "jest --config test/jest.server.js --coverage",
"test:watch:client": "jest --config test/jest.client.js --watch",
"test:watch:server": "jest --config test/jest.server.js --watch",
"dev": "webpack-dev-server --config webpack.dev.js --open",
"build": "webpack --config webpack.prod.js",
"build:lib": "npx babel --out-dir lib src",
"lint": "jest --config test/jest.lint.js",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"validate": "npm run test && npm run build:lib && npm run build",
"setup": "npm install && npm run validate"
},
"files": [
"dist",
"lib"
],
"jest-runner-eslint": {
"cliOptions": {
"ignorePath": "./.gitignore"
}
},
"keywords": [],
"author": "Phillipe Martins",
"repository": {
"type": "git",
"url": "https://github.com/inkasadev/studioled"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/user-event": "^13.5.0",
"babel-loader": "^8.2.3",
"canvas": "^2.8.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.3.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"is-ci-cli": "^2.2.0",
"jest": "^27.4.7",
"jest-canvas-mock": "^2.3.1",
"jest-runner-eslint": "^1.0.0",
"mini-css-extract-plugin": "^2.4.6",
"node-sass": "^7.0.1",
"prettier": "^2.5.1",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"unminified-webpack-plugin": "^3.0.0",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0"
}
}