-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
{
"name": "dem-ui-grid",
"version": "0.0.3",
"description": "Bootstrap-like grid package for react",
"author": "Andrey Shpilevoy aka kto",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"lint": "eslint src",
"test": "jest --no-cache",
"build": "npm run clean && npm run lint && npm run test && cpx \"src/**/*.scss\" lib && babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git://github.com/AndreyShpilevoy/DemUiGrid.git"
},
"jest": {
"transform": {
".css": "<rootDir>/node_modules/jest-css-modules",
".*": "<rootDir>/node_modules/babel-jest"
},
"testRegex": "(.*/__tests__/.*|\\.(test|spec))\\.js|.jsx",
"moduleFileExtensions": [
"js",
"json"
],
"collectCoverage": true,
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.8",
"babel-plugin-transform-class-properties": "6.19.0",
"babel-plugin-transform-react-remove-prop-types": "0.2.11",
"babel-plugin-transform-react-router-optimize": "1.0.1",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"cpx": "1.5.0",
"enzyme": "2.6.0",
"eslint": "3.11.1",
"eslint-config-airbnb-base": "10.0.1",
"eslint-import-resolver-babel-module": "2.2.1",
"eslint-loader": "1.6.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-react": "6.8.0",
"jest-cli": "17.0.3",
"jest-css-modules": "1.1.0"
},
"dependencies": {
"react": "15.4.1",
"react-dom": "15.4.1"
}
}