This repository was archived by the owner on Jun 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
91 lines (91 loc) · 3.14 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
{
"name": "material-remixer",
"version": "1.0.1",
"description": "A set of libraries and protocols to allow the sharing of design values and live refinement of apps during the development process.",
"homepage": "https://github.com/material-foundation/material-remixer",
"author": "The Material Remixer Authors (see AUTHORS)",
"license": "Apache-2.0",
"keywords": [
"material",
"remixer"
],
"repository": {
"type": "git",
"url": "https://github.com/material-foundation/material-remixer-js.git"
},
"bugs": {
"url": "https://github.com/material-foundation/material-remixer-js/issues/"
},
"scripts": {
"build:dev": "mkdirp build && cross-env RMX_ENV=development webpack --progress --colors",
"build:prod": "mkdirp build && cross-env RMX_ENV=production webpack -p --progress --colors",
"build": "npm-run-all --parallel build:dev build:prod",
"codecov": "cat coverage/*/lcov.info | codecov",
"clean": "del-cli build/** dist/**",
"dev": "npm run clean && npm run build && cross-env RMX_ENV=development webpack-dev-server",
"docs": "typedoc --out docs/api --readme none --exclude '**/+(__tests__|node_modules)/**/*.ts?(x)' ",
"dist": "npm run clean && npm run build && copyFiles -f build/*.* dist",
"lint:ts": "tslint --fix --force 'src/**/*.ts?(x)'",
"lint:css": "lesshint src/ui/styles/*.less examples/src/*.css",
"lint": "npm-run-all --parallel lint:*",
"postinstall": "cd examples && npm install",
"test": "karma start",
"test:watch": "karma start --no-single-run"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/lodash.throttle": "^4.1.0",
"@types/mocha": "^2.2.33",
"@types/react": "^15.0.20",
"@types/react-addons-test-utils": "^0.14.15",
"@types/react-dom": "^0.14.19",
"@types/sinon": "^1.16.32",
"@types/sinon-chai": "^2.7.27",
"@types/tinycolor2": "^1.1.0",
"@types/uuid": "^2.0.29",
"chai": "^3.5.0",
"codecov.io": "^0.1.6",
"copyfiles": "^1.0.0",
"cross-env": "^3.1.3",
"css-loader": "^0.27.3",
"del-cli": "^0.2.0",
"html-loader": "^0.4.4",
"istanbul-instrumenter-loader": "^2.0.0",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"less": "^2.7.1",
"less-loader": "^4.0.2",
"lesshint": "^3.1.0",
"mkdirp": "^0.5.1",
"mocha": "^3.1.2",
"npm-run-all": "^4.0.2",
"react-addons-test-utils": "^15.4.1",
"sinon": "^2.0.0-pre.4",
"sinon-chai": "^2.8.0",
"source-map-loader": "^0.2.0",
"style-loader": "^0.16.0",
"ts-loader": "^2.0.3",
"tslint": "^4.0.2",
"tslint-react": "^2.5.0",
"typedoc": "^0.5.9",
"typescript": "^2.1.6",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"firebase": "^3.7.2",
"lodash.throttle": "^4.1.1",
"material-design-lite": "^1.2.1",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"tinycolor2": "^1.4.1",
"uuid": "^3.0.1"
}
}