-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.91 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
{
"name": "material-ui-colors",
"version": "0.0.0-development",
"description": "Import material ui colors to your js project",
"main": "dist/index.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"commit": "git-cz",
"test": "mocha src/index.test.js -w --compilers js:@babel/register",
"test:single": "mocha src/index.test.js --compilers js:@babel/register",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/gaithoben/material-ui-colors.git"
},
"keywords": [
"material-ui-colors",
"material ui",
"colors"
],
"author": "Bernard Gaitho <[email protected]> (http://github.com/gaithoben)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaithoben/material-ui-colors/issues"
},
"homepage": "https://github.com/gaithoben/material-ui-colors#readme",
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.2.0",
"@babel/core": "7.2.0",
"@babel/node": "7.2.0",
"@babel/plugin-transform-object-assign": "7.2.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.2.0",
"@babel/register": "7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "8.0.5",
"chai": "4.1.2",
"ghooks": "2.0.2",
"json-loader": "0.5.7",
"mocha": "4.0.1",
"npm-run-all": "4.1.2",
"rimraf": "2.6.2",
"semantic-release": "^15.13.3",
"webpack": "3.10.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test:single"
}
},
"babel": {
"presets": [
"@babel/env"
]
}
}