-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.57 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
{
"name": "@cohubinc/blueprint",
"version": "1.2.8",
"description": "Layout components from Cohub",
"author": "Cohub",
"main": "build/index.js",
"types": "build/index.d.ts",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"lint": "standard",
"format": "prettier-standard --format",
"test": "jest --coverage",
"release": "yarn build && yarn publish"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.2",
"@types/jest": "^24.0.24",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"jest": "^24.9.0",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^1.27.13",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"standard": "^14.3.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"build/"
]
},
"standard": {
"ignore": [
"node_modules/",
"build/"
],
"globals": [
"describe",
"it",
"test",
"expect",
"afterAll",
"jest"
]
},
"peerDependencies": {
"react": "^16",
"react-dom": "^16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cohubinc/blueprint.git"
}
}