This repository was archived by the owner on Jan 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.78 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.78 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "react-be-blaze",
"version": "1.3.0",
"description": "A tiny React wrapper for Blaze components.",
"main": "lib/react-be-blaze.min.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint webpack.config.js ./src",
"lint:fix": "npm run lint -- --fix",
"test": "echo Need tests! && exit 0",
"start": "start-storybook -p 6006",
"build": "better-npm-run build",
"build:storybook": "build-storybook"
},
"betterScripts": {
"build": {
"command": "npm run lint && npm run test && webpack --progress --colors",
"env": {
"NODE_ENV": "production"
}
}
},
"keywords": [
"react",
"blaze",
"blazecss",
"react-be-blaze"
],
"repository": {
"type": "git",
"url": "git@github.com:g-script/react-be-blaze.git"
},
"author": "Nicolas Goudry <goudry.nicolas@gmail.com>",
"license": "MIT",
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"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-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"better-npm-run": "0.0.13",
"blaze": "3.2.0",
"classnames": "^2.2.5",
"eslint": "^3.11.1",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-jsx": "^3.2.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-standard": "^2.0.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"webpack": "^1.13.3",
"webpack-validator": "^2.2.9"
},
"peerDependencies": {
"blaze": "3.2.0",
"react": "^15.4.1"
},
"standard": {
"parser": "babel-eslint"
}
}