-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
97 lines (97 loc) · 3.02 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
91
92
93
94
95
96
97
{
"name": "realizejs",
"version": "0.9.25",
"description": "A rich set of UI components based on Material Design using React.js",
"authors": [
"Ariel Lindgren <ariel@wkm.com.br>",
"Pedro Jesus <pjesus@wkm.com.br>",
"Lucas Toledo <ltoledo@wkm.com.br>",
"Rafael Ferrari <rferrari@wkm.com.br>",
"Hudson Gomes"
],
"license": "MIT",
"homepage": "http://www.wkm.com.br",
"repository": {
"type": "git",
"url": "https://github.com/working-minds/realizejs.git"
},
"main": "src/index.js",
"browser": "dist/build/realizejs.js",
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.6",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chance": "^1.0.4",
"css-loader": "^0.26.1",
"diff": "^3.2.0",
"enzyme": "^2.2.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-import-resolver-webpack": "^0.2.1",
"eslint-plugin-import": "^1.6.0",
"eslint-plugin-jsx-a11y": "^1.0.3",
"eslint-plugin-react": "^5.0.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"imports-loader": "^0.6.5",
"json-loader": "^0.5.4",
"karma": "^1.4.1",
"karma-chai-sinon": "^0.1.5",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"materialize-css": "^0.97.6",
"mocha": "^2.4.5",
"node-sass": "^4.5.0",
"phantomjs-polyfill-object-assign": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"react-addons-test-utils": "^0.14.7",
"react-tools": "^0.13.3",
"rimraf": "^2.5.2",
"sass-loader": "^5.0.1",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"webpack": "^2.2.1"
},
"dependencies": {
"babel-polyfill": "^6.22.0",
"core-decorators": "^0.12.2",
"form-serializer": "^2.5.0",
"jquery": "^2.1.1",
"jquery.inputmask": "~3.1.63",
"lodash": "^4.6.1",
"materialize-css": "^0.97.6",
"moment": "^2.12.0",
"numeral": "^2.0.4",
"prop-types": "^15.6.1",
"react": "^0.14.7",
"react-addons-css-transition-group": "^0.14.7",
"react-color": "^1.3.7",
"react-dom": "^0.14.7",
"react-mixin": "https://github.com/rafaelfbs/react-mixin/archive/v3.0.6.tar.gz",
"reflux": "^0.3.0",
"traits-decorator": "^1.0.1"
},
"scripts": {
"build": "npm run build:webpack",
"build:node": "babel ./src/js --out-dir ./dist",
"build:webpack": "webpack --config webpack.config.js",
"watch:webpack": "npm run build:webpack -- --watch",
"clean:build": "rimraf build",
"test": "npm run test:karma -- --single-run",
"test:watch": "npm run test:karma -- --auto-watch",
"test:karma": "./node_modules/.bin/karma start test/karma.conf.js",
"prepublish": "npm run build"
}
}