-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 KB
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
{
"name": "@winderful/react-spacing",
"version": "0.3.0",
"description": "A TypeScript React library used to establish consistent scale across application components",
"main": "lib/index.js",
"author": "Nathan Winder",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn tsc --build",
"docs": "yarn typedoc",
"test": "jest",
"coverage": "jest --coverage",
"metrics": "node ./bin/index"
},
"devDependencies": {
"@types/enzyme": "^3.1.14",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^23.3.8",
"@types/jsdom": "^12.2.0",
"@types/platform": "^1.3.1",
"@types/react": "^16.4.18",
"coveralls": "^3.0.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.4",
"jest": "^23.6.0",
"jsdom": "^12.2.0",
"jsdom-global": "^3.0.2",
"puppeteer": "^1.10.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-test-renderer": "^16.6.0",
"run-headless": "^2.0.1",
"ts-jest": "^23.10.4",
"tsc": "^1.20150623.0",
"tslint": "^5.11.0",
"typedoc": "^0.13.0",
"typescript": "^3.1.3"
},
"peerDependencies": {
"react": "^16.6.0"
},
"dependencies": {
"platform": "^1.3.5"
}
}