-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.33 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
87
88
89
90
{
"name": "stores.js",
"version": "1.1.6",
"author": "[email protected]",
"description": "storage",
"keywords": [
"react storage",
"store.js",
"storage",
"stores",
"store"
],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/nevergiveup-j/stores.js.git"
},
"bugs": {
"url": "https://github.com/nevergiveup-j/stores.js/issues"
},
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"dev": "node ./scripts/server.js",
"build:lib": "babel src --out-dir lib --presets=es2015,react,stage-3 --plugins=transform-object-assign --ignore 'src/__tests__'",
"build": "rm -rf dist & webpack --config ./scripts/webpack/webpack.config.js",
"lint:js": "eslint src examples --ext '.js,.jsx'",
"lint": "npm run lint:js",
"test": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"pre-commit": "lint-staged"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^15.5.0",
"react-dom": "^15.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-jest": "^22.0.4",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"classnames": "^2.2.5",
"coveralls": "^3.0.0",
"css-loader": "^0.28.7",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.0.4",
"lint-staged": "^6.0.0",
"node-sass": "^4.5.3",
"pre-commit": "^1.2.2",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.9.2"
},
"jest": {
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(js|jsx)$",
"moduleFileExtensions": [
"js",
"jsx"
],
"transform": {
"^.+\\.(js|jsx)?$": "<rootDir>/scripts/jest/preprocessor.js"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"pre-commit": [
"pre-commit"
]
}