-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.24 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
{
"name": "styled-atoms",
"version": "1.0.1",
"description": "An implementation of atoms from atomic design using CSS modules.",
"main": "dist/index.js",
"scripts": {
"test": "mocha -r ts-node/register test/**/*.spec.tsx",
"test:cover": "nyc npm test",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "github.com/Logiraptor/styled-atoms"
},
"author": "Patrick Oyarzun",
"license": "MIT",
"types": "dist/index.d.ts",
"nyc": {
"include": [
"src/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
],
"all": true
},
"dependencies": {
"react": "^15.6.1"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/chai-enzyme": "^0.6.2",
"@types/enzyme": "^2.8.1",
"@types/mocha": "^2.2.41",
"@types/react": "^15.0.31",
"@types/react-dom": "^15.5.1",
"chai": "^4.0.2",
"chai-enzyme": "^0.7.1",
"enzyme": "^2.9.1",
"inflight": "^1.0.6",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"ts-node": "^3.1.0",
"typescript": "^2.3.4"
}
}