-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.53 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
{
"name": "XXX",
"version": "0.1.0",
"private": true,
"description": "XXX",
"license": "MIT",
"keywords": [],
"author": "Blueberry Apps",
"typings": "index",
"main": "lib/index.js",
"engines": {
"node": ">=6.9",
"npm": ">=3.10"
},
"scripts": {
"build": "npm run build:clean && npm run build:lib",
"build:lib": "BABEL_ENV=build babel src --out-dir lib",
"build:clean": "rimraf lib",
"prepublish": "npm run eslint && npm run test && npm run build",
"eslint": "eslint ./src",
"eslint:fix": "npm run eslint -- --fix",
"jest": " jest",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blueberryapps/XXX.git"
},
"bugs": {
"url": "https://github.com/blueberryapps/XXX/issues"
},
"homepage": "https://github.com/blueberryapps/XXX/tree/master#readme",
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/utils/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/utils/__mocks__/styleMock.js"
},
"collectCoverageFrom": [
"src/**/*.js"
]
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.23.0",
"babel-template": "^6.24.1",
"enzyme": "^2.8.1",
"enzyme-to-json": "^1.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-module-utils": "^2.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-sort-imports-es6-autofix": "^0.1.1",
"jest": "^19.0.2",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1"
},
"dependencies": {},
"peerDependencies": {
"react": ">=14.0.0 || >=0.13.0",
"react-dom": ">=14.0.0 || >=0.13.0"
}
}