|
7 | 7 | "Benjamin Eidelman <beneidel@gmail.com>", |
8 | 8 | "bpmn.io Contributors <https://bpmn.io>" |
9 | 9 | ], |
10 | | - "browser": "dist/jsondiffpatch.umd.js", |
11 | | - "main": "dist/jsondiffpatch.cjs.js", |
12 | | - "module": "dist/jsondiffpatch.esm.js", |
13 | | - "types": "./dist/index", |
| 10 | + "main": "src/index.js", |
| 11 | + "types": "src/index.d.ts", |
14 | 12 | "files": [ |
15 | 13 | "dist", |
16 | 14 | "bin" |
|
19 | 17 | "jsondiffpatch": "./bin/jsondiffpatch" |
20 | 18 | }, |
21 | 19 | "scripts": { |
22 | | - "all": "run-s build test", |
23 | | - "build": "rollup -c", |
24 | | - "test-browser": "gulp test-browser", |
| 20 | + "all": "run-s lint test", |
25 | 21 | "lint": "eslint .", |
26 | | - "bump": "gulp bump", |
27 | | - "test": "nyc mocha", |
28 | | - "watch": "nodemon --exec \"mocha\"", |
29 | | - "prepublishOnly": "npm run all", |
30 | | - "cover-report": "open coverage/lcov-report/index.html", |
31 | | - "cover-publish": "nyc mocha && codeclimate < coverage/lcov.info" |
| 22 | + "test": "mocha", |
| 23 | + "watch": "npm test -- --watch", |
| 24 | + "prepublishOnly": "npm run all" |
32 | 25 | }, |
33 | 26 | "repository": { |
34 | 27 | "type": "git", |
35 | | - "url": "https://github.com/benjamine/jsondiffpatch.git" |
| 28 | + "url": "https://github.com/bpmn-io/jsondiffpatch.git" |
36 | 29 | }, |
37 | 30 | "keywords": [ |
38 | 31 | "json", |
|
44 | 37 | "diff-match-patch": "^1.0.0" |
45 | 38 | }, |
46 | 39 | "devDependencies": { |
47 | | - "@istanbuljs/nyc-config-babel": "^1.2.2", |
48 | | - "babel-core": "^6.26.0", |
49 | | - "babel-eslint": "^8.2.1", |
50 | | - "babel-plugin-external-helpers": "^6.22.0", |
51 | | - "babel-plugin-istanbul": "^4.1.5", |
52 | | - "babel-plugin-transform-object-rest-spread": "^6.26.0", |
53 | | - "babel-polyfill": "^6.26.0", |
54 | | - "babel-preset-env": "^1.6.1", |
55 | | - "babel-preset-stage-0": "^6.24.1", |
56 | | - "babel-preset-stage-1": "^6.24.1", |
57 | | - "babel-preset-stage-2": "^6.24.1", |
58 | 40 | "chai": "^4.1.2", |
59 | | - "codeclimate-test-reporter": "0.0.3", |
60 | 41 | "eslint": "^4.16.0", |
61 | 42 | "eslint-config-standard": "^11.0.0-beta.0", |
62 | 43 | "eslint-plugin-import": "^2.8.0", |
63 | 44 | "eslint-plugin-node": "^5.2.1", |
64 | 45 | "eslint-plugin-promise": "^3.6.0", |
65 | 46 | "eslint-plugin-standard": "^3.0.1", |
66 | 47 | "esm": "^3.0.25", |
67 | | - "istanbul": "^0.4.5", |
68 | 48 | "mkdirp": "^0.5.1", |
69 | 49 | "mocha": "^5.0.0", |
70 | | - "nodemon": "^1.17.1", |
71 | | - "npm-run-all": "^4.1.2", |
72 | | - "nyc": "^11.4.1", |
73 | | - "prettier": "^1.10.2", |
74 | | - "rollup": "^0.54.1", |
75 | | - "rollup-plugin-babel": "^3.0.3", |
76 | | - "rollup-plugin-commonjs": "^8.2.6", |
77 | | - "rollup-plugin-istanbul": "^2.0.0", |
78 | | - "rollup-plugin-node-resolve": "^3.0.2", |
79 | | - "rollup-plugin-replace": "^2.0.0", |
80 | | - "rollup-plugin-visualizer": "^0.3.1" |
| 50 | + "npm-run-all": "^4.1.2" |
81 | 51 | }, |
82 | 52 | "license": "MIT", |
83 | 53 | "engines": { |
|
0 commit comments