-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 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
31
32
33
34
35
36
{
"name": "combine-same-keys",
"version": "1.2.0",
"description": "Combine all properties sharing the same key into a single object",
"license": "MIT",
"repository": "github:rafaelrinaldi/combine-same-keys",
"main": "dist/combineSameKeys.umd.js",
"jsnext:main": "dist/combineSameKeys.es.js",
"module": "dist/combineSameKeys.es.js",
"keywords": [
"combine",
"css-in-js",
"extend",
"helper",
"keys",
"merge",
"object",
"util"
],
"scripts": {
"test": "NODE_ENV=test prettier-standard index.js && jest --verbose",
"build": "rollup -c"
},
"files": [
"dist"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.1",
"jest-cli": "^22.4.2",
"prettier-standard": "^8.0.0",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^3.0.3"
}
}