forked from lukevella/react-activity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.78 KB
/
package.json
File metadata and controls
60 lines (60 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
{
"name": "react-activity",
"version": "1.1.2",
"description": "Activity indicator component library for React applications.",
"main": "./dist/react-activity.js",
"scripts": {
"start": "webpack-dev-server --config examples/webpack.config.js --hot --inline",
"compile:lib": "rm -Rf ./lib && babel src --out-dir lib && sass --update src:lib --sourcemap=none && git add lib",
"build": "webpack --progress --colors && sass --update -f src/styles.scss:dist/react-activity.css --sourcemap=none && git add dist",
"lint": "eslint ./src",
"build:examples": "NODE_ENV=production webpack --config examples/webpack.config.js && git add examples/build"
},
"pre-commit": [
"compile:lib",
"build",
"build:examples"
],
"repository": {
"type": "git",
"url": "https://github.com/lukevella/react-activity.git"
},
"keywords": [
"react",
"activity",
"indicator",
"ajax",
"loader"
],
"author": "Luke Vella <me@lukevella.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukevella/react-activity/issues"
},
"homepage": "https://github.com/lukevella/react-activity",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.3.13",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"css-loader": "^0.23.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.16.1",
"extract-text-webpack-plugin": "^0.9.1",
"node-sass": "^3.4.2",
"pre-commit": "^1.1.2",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.0"
},
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"dependencies": {
"prop-types": "^15.5.8"
}
}