-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.21 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
{
"name": "react-outline",
"version": "1.7.3",
"description": "react styling framework to keep your makeup clean",
"main": "./dist/main.js",
"scripts": {
"build": "babel --copy-files source --out-dir dist",
"build:watch": "babel --copy-files source --out-dir dist -s --source-maps inline -w",
"test": "jest --no-cache ",
"test:go": "npm test -- --watch --coverage",
"test:update": "npm test -- --updateSnapshot",
"test:cover": "npm test -- --coverage --no-cache",
"test:watch": "npm test -- --watch --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codemeasandwich/react-outline.git"
},
"keywords": [
"react",
"css",
"css-in-js",
"react styling",
"styled-components",
"prefixer",
"inline styles",
"autoprefixer",
"vendor prefix"
],
"author": "Brian Shannon (http://www.codemeasandwich.com)",
"license": "Apache-2.0 ",
"bugs": {
"url": "https://github.com/codemeasandwich/react-outline/issues"
},
"homepage": "https://github.com/codemeasandwich/react-outline#readme",
"dependencies": {
"add-px-to-style": "^1.0.0",
"hyphenate-style-name": "^1.0.2",
"inline-style-prefixer": "^3.0.6",
"react": "^15.6.1"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"coveralls": "^2.13.1",
"enzyme": "^2.9.1",
"faker": "^4.1.0",
"jest": "^20.0.4",
"raw-loader": "^0.5.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1"
},
"jest": {
"globals": {
"__TEST__": true
},
"moduleNameMapper": {
"\\.(css|jpg|png)$": "<rootDir>/empty-module.js",
"^raw-loader": "<rootDir>/empty-module.js",
"react-outline": "<rootDir>/source/main.js",
"^react-addons-css-transition-group$": "<rootDir>/empty-module.js"
},
"testPathIgnorePatterns": [
"/node_modules/"
],
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"source/**/*.js",
"!source/utils/index.js"
],
"verbose": true
}
}