UNPKG

2.65 kBJSONView Raw
1{
2 "name": "object-translate",
3 "version": "1.0.0",
4 "description": "Easily turn objects into other objects.",
5 "main": "cjs/index.js",
6 "browser": "dist/objectTranslate.js",
7 "module": "es/index.js",
8 "publishConfig": {
9 "registry": "https://registry.npmjs.org/"
10 },
11 "jsxnext:main": "es/index.js",
12 "files": [
13 "dist",
14 "cjs",
15 "es",
16 "src"
17 ],
18 "engines": {
19 "node": ">=4.0.0"
20 },
21 "scripts": {
22 "prepublish": "npm run build",
23 "precommit": "npm run lint:test",
24 "prepush": "npm run lint:test",
25 "release": "release-it",
26 "recommend-bump": "conventional-recommended-bump -p angular",
27 "changelog": "standard-changelog",
28 "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
29 "lint": "npm run lint:eslint",
30 "lint:eslint": "eslint src/*.js",
31 "test": "clear && jest",
32 "test:coverage": "jest --coverage",
33 "test:watch": "clear && jest --watch --coverage",
34 "lint:test": "npm run lint && npm run test:coverage",
35 "build": "clear && npm run lint:test && npm run build:cjs && npm run build:es && npm run build:umd",
36 "build:watch": "clear && rimraf cjs && cross-env BABEL_ENV=cjs babel -w src --out-dir cjs",
37 "build:es": "rimraf es && cross-env BABEL_ENV=es babel src --out-dir es",
38 "build:cjs": "rimraf cjs && cross-env BABEL_ENV=cjs babel src --out-dir cjs",
39 "build:umd": "rimraf dist && cross-env BABEL_ENV=es rollup -c & cross-env BABEL_ENV=es NODE_ENV=production rollup -c",
40 "cm": "git-cz"
41 },
42 "keywords": [],
43 "author": "Danielo Rodriguez Rivero (rdanielo@gmail.com)",
44 "license": "MIT",
45 "repository": "danielo515/object-translate",
46 "devDependencies": {
47 "babel-cli": "^6.18.0",
48 "babel-core": "^6.17.0",
49 "babel-plugin-add-module-exports": "^0.2.1",
50 "babel-preset-es2015": "^6.16.0",
51 "commitizen": "^2.9.6",
52 "conventional-recommended-bump": "^1.0.0",
53 "coveralls": "^2.11.15",
54 "cross-env": "^3.1.3",
55 "cz-conventional-changelog": "^2.0.0",
56 "eslint": "^3.12.0",
57 "eslint-config-devine": "^1.6.1",
58 "eslint-plugin-babel": "^4.0.0",
59 "husky": "^0.12.0",
60 "jest": "^18.1.0",
61 "release-it": "^2.5.1",
62 "rimraf": "^2.5.4",
63 "rollup": "^0.39.2",
64 "rollup-plugin-babel": "^2.6.1",
65 "rollup-plugin-bundle-size": "^1.0.1",
66 "rollup-plugin-commonjs": "^7.0.0",
67 "rollup-plugin-node-resolve": "^2.0.0",
68 "rollup-plugin-uglify": "^1.0.1",
69 "standard-changelog": "^1.0.1"
70 },
71 "dependencies": {
72 "object-path": "^0.11.3",
73 "traverse": "^0.6.6"
74 },
75 "config": {
76 "commitizen": {
77 "path": "./node_modules/cz-conventional-changelog"
78 }
79 }
80}