-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.19 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
{
"name": "small-color",
"description": "A tiny (0,8kb), limited & tree-shakable color manipulation library",
"version": "1.0.5",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib/**",
"es/**"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf lib es coverage",
"build": "yarn build:es && yarn build:lib",
"build:es": "babel src --out-dir es --ignore \"src/__tests__\"",
"build:lib": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --ignore \"src/__tests__\"",
"release": "yarn clean && yarn test && yarn build && npm publish",
"test": "cross-env BABEL_ENV=commonjs jest",
"coverage": "yarn test --coverage"
},
"repository": "https://github.com/robinweser/small-color.git",
"author": "robinweser <contact@weser.io>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"cross-env": "^5.2.0",
"jest": "^23.6.0",
"prettier": "^1.19.1",
"rimraf": "^2.6.2"
}
}