-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.12 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-typestyle-inline",
"version": "0.3.3",
"description": "An implementation of the React-TypeStyle API using 100% React inline styles",
"keywords": [
"react",
"inline",
"css",
"style",
"typestyle",
"types",
"typescript",
"js"
],
"homepage": "https://github.com/Malpaux/react-typestyle-inline#readme",
"bugs": {
"url": "https://github.com/Malpaux/react-typestyle-inline/issues"
},
"license": "BSD-3-Clause",
"author": "Malpaux (malpaux.com)",
"contributors": [
{
"name": "Paul Brachmann",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Malpaux/react-typestyle-inline.git"
},
"scripts": {
"build": "tsc -p ./tsconfig.prod.json -d",
"clean": "rimraf dist",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix",
"test": "jest --env=jsdom",
"test:coverage": "jest --env=jsdom --coverage"
},
"dependencies": {
"react-typestyle": "^0.3.3"
},
"devDependencies": {
"@types/enzyme": "^3.1.8",
"@types/enzyme-adapter-react-16": "^1.0.1",
"@types/jest": "^22.1.2",
"@types/node": "^9.4.4",
"@types/react": "^16.0.36",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.2.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"ts-jest": "^22.0.3",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.6.0",
"tslint-react": "^3.4.0",
"typescript": "^2.7.1",
"typestyle": "^1.7.1"
},
"peerDependencies": {
"react": "^15 || ^16",
"typestyle": "^1.7.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"mapCoverage": true,
"roots": [
"<rootDir>/src/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"<rootDir>/(build|dist|docs|node_modules)/"
],
"testEnvironment": "node"
}
}