-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 907 Bytes
/
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
{
"name": "google-material-color-palette-json",
"version": "2.0.0",
"repository": "https://github.com/sravanrekandar/google-material-color-palette-json.git",
"description": "A json file to represent google material's color palette. Created to use in React/ React Native",
"main": "lib/palette.js",
"scripts": {
"test": "npm run build && mocha",
"clean": "rimraf lib && mkdirp lib",
"create-umd": "browserify src/browserify-entry -o lib/palette-umd.js -s PALETTE",
"build": "npm run clean && node src/index.js && npm run create-umd"
},
"keywords": [
"material",
"design",
"color",
"pallette"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"browserify": "^13.1.1",
"handlebars": "^4.0.5",
"jquery": "^3.1.0",
"jsdom": "^9.5.0",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"rimraf": "^2.5.4"
}
}