This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.71 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
{
"name": "zt-react-components",
"version": "1.2.0",
"description": "Commonly used React components for ZeroTurnaround products",
"license": "Apache-2.0",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"build": "yarn build:commonjs && yarn build:umd",
"build:commonjs": "babel src -d lib",
"build:commonjs:watch": "yarn build -- --watch",
"build:umd": "webpack src/index.js dist/zt-react-components.js",
"build:umd:watch": "yarn build:umd -- --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:update": "jest --u",
"lint": "eslint .",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/zeroturnaround/zt-react-components.git"
},
"peerDependencies": {
"react": ">=15.0.0"
},
"dependencies": {
"prop-types": "^15.5.10",
"styled-components": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-inline-react-svg": "^0.4.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-zt": "^1.4.0",
"eslint-plugin-react": "^7.0.1",
"jest": "^20.0.4",
"jest-styled-components": "next",
"react": "^15.6.1",
"react-test-renderer": "^15.5.4",
"webpack": "^2.6.1"
},
"jest": {
"testEnvironment": "node"
}
}