forked from carloscabo/colz
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 861 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
{
"name": "colz",
"version": "0.1.0",
"description": "JS library to convert between color spaces.",
"main": "dist/colz.cjs.js",
"browser": "dist/colz.browser.js",
"module": "src/colz.js",
"scripts": {
"test": "echo \"Open test/index.html to run the tests\" && exit 1",
"build_cjs": "rollup -m -i src/colz.js -o dist/colz.cjs.js -f cjs",
"build_browser": "rollup -m -i src/colz.js -o dist/colz.browser.js -f iife -n colz",
"prepublish": "npm run build_cjs && npm run build_browser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arantes555/colz.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/arantes555/colz/issues"
},
"homepage": "https://github.com/arantes555/colz#readme",
"devDependencies": {
"rollup": "^0.49.2",
"standard": "^10.0.3"
}
}