-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "pixboost-react",
"version": "2.2.1",
"description": "React library to integrate with pixboost api",
"main": "lib/index.js",
"files": [
"lib/components",
"lib/util.js",
"lib/index.js"
],
"scripts": {
"test": "jest --ci --coverage ./__tests__/",
"test:update": "jest --updateSnapshot ./__tests__/",
"lint": "eslint ./src ./__tests__",
"lint:fix": "eslint --fix ./src ./__tests__",
"ci": "npm-run-all lint test",
"build": "cross-env BABEL_ENV=build babel src --out-dir lib --copy-files",
"prepare": "npm run build"
},
"jest": {
"setupFiles": [
"./setupTests.js"
],
"testEnvironment": "jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pixboost/pixboost-react.git"
},
"keywords": [
"pixboost"
],
"author": "Pixboost",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pixboost/pixboost-react/issues"
},
"homepage": "https://github.com/Pixboost/pixboost-react#readme",
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"babel-jest": "^29.5.0",
"cross-env": "^5.2.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.1.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-react": "^7.10.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"npm-run-all": "^4.1.3",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.5.2",
"react-test-renderer": "^16.4.1"
},
"peerDependencies": {
"react": "> 14.0.0"
}
}