-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.16 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.16 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
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
{
"name": "@plasma-platform/plasma-quark",
"version": "2.0.19",
"description": "QUARK-React description",
"main": "webpack.config.js",
"scripts": {
"release": "npm version patch && git push && git push --tags && npm publish",
"build": "npm run compile && npm run build:css",
"build:demo": "npm run compile && npm run build:css && cd example && npm start",
"build:css": "rimraf css && webpack && rimraf css/main.js",
"compile": "rimraf lib && BABEL_ENV=build babel src/components --out-dir lib",
"test": "jest",
"test-coverage": "jest --coverage"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"setupTestFrameworkScriptFile": "setup-jasmine-env.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/templatemonster/QUARK-React.git"
},
"keywords": [
"templatemonster",
"quark",
"react",
"es6",
"webpack"
],
"author": "TemplateMonster",
"license": "ISC",
"bugs": {
"url": "https://github.com/templatemonster/QUARK-React/issues"
},
"homepage": "https://github.com/templatemonster/QUARK-React#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-react-autoprefix": "^0.2.6",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators": "^6.6.5",
"babel-plugin-transform-import-extension-jsx-to-js": "^0.1.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-plugin-transform-require-ignore": "0.0.2",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.25.0",
"enzyme": "^2.5.1",
"eslint": "^3.7.1",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-html": "^1.5.2",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.2.2",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"jasmine-reporters": "^2.2.0",
"jest": "^16.0.2",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"postcss-loader": "^0.13.0",
"postcss-safe-parser": "^2.0.0",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"react-test-renderer": "^15.3.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.2"
},
"dependencies": {
"autoprefixer": "^6.5.0",
"classnames": "^2.2.5",
"fetch-jsonp": "^1.0.2",
"is-retina": "^1.0.3",
"js-base64": "^2.1.9",
"md5": "^2.2.1",
"postcss-inline-svg": "^2.1.2",
"query-string": "^4.2.2",
"react": "^15.3.1",
"react-addons-css-transition-group": "^15.3.2",
"react-dom": "^15.3.2",
"react-textarea-autosize": "^4.0.5",
"underscore": "^1.8.3"
}
}