-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.4 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.4 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
48
49
50
51
52
53
54
55
{
"name": "aphrodite-to-jss",
"version": "1.1.7",
"description": "Aphrodite compatible API on top of JSS.",
"main": "dist/index.js",
"repository": "https://github.com/SamyPesse/aphrodite-to-jss",
"author": "Samy Pessé <samypesse@gmail.com>",
"license": "MIT",
"dependencies": {
"css-shorthand-properties": "^1.1.1",
"hash-sum": "^1.0.2",
"hyphenate-style-name": "1.0.3",
"inline-style-prefixer": "^5.1.0",
"jss": "^10.0.0-alpha.17",
"jss-plugin-default-unit": "^10.0.0-alpha.17",
"jss-plugin-global": "^10.0.0-alpha.17",
"jss-plugin-nested": "^10.0.0-alpha.17",
"jss-plugin-props-sort": "^10.0.0-alpha.17"
},
"devDependencies": {
"@types/hash-sum": "^1.0.0",
"@types/inline-style-prefixer": "^5.0.0",
"@types/jest": "^23.3.10",
"@types/jss": "^9.5.8",
"jest": "^23.6.0",
"prettier": "^1.15.3",
"ts-jest": "^23.10.5",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.2.2"
},
"scripts": {
"prepare": "tsc",
"test": "jest",
"lint": "tslint ./src/**/*.ts"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}