source: node_modules/fast-json-patch/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 2.6 KB
RevLine 
[d24f17c]1{
2 "name": "fast-json-patch",
3 "version": "3.1.1",
4 "description": "Fast implementation of JSON-Patch (RFC-6902) with duplex (observe changes) capabilities",
5 "homepage": "https://github.com/Starcounter-Jack/JSON-Patch",
6 "keywords": [
7 "json",
8 "patch",
9 "http",
10 "rest"
11 ],
12 "repository": {
13 "type": "git",
14 "url": "git://github.com/Starcounter-Jack/JSON-Patch.git"
15 },
16 "bugs": {
17 "url": "https://github.com/Starcounter-Jack/JSON-Patch/issues"
18 },
19 "author": {
20 "name": "Joachim Wester",
21 "email": "joachimwester@me.com",
22 "url": "http://www.starcounter.com/"
23 },
24 "license": "MIT",
25 "main": "index.js",
26 "module": "index.mjs",
27 "typings": "index.d.ts",
28 "devDependencies": {
29 "benchmark": "^2.1.4",
30 "bluebird": "^3.5.5",
31 "bluebird-retry": "^0.11.0",
32 "chalk": "^2.4.2",
33 "event-target-shim": "^5.0.1",
34 "fast-deep-equal": "^2.0.1",
35 "http-server": "^0.12.3",
36 "jasmine": "^3.4.0",
37 "request": "^2.88.0",
38 "sauce-connect-launcher": "^1.2.7",
39 "saucelabs": "^2.1.9",
40 "selenium-webdriver": "^4.0.0-alpha.4",
41 "typescript": "~3.5.2",
42 "webpack": "^4.35.0",
43 "webpack-cli": "^3.3.5"
44 },
45 "scripts": {
46 "tsc": "npm run tsc-common && npm run tsc-module",
47 "tsc-common": "tsc",
48 "tsc-module": "tsc --module esnext --moduleResolution node --outDir \"module/\" && npm run tsc-to-mjs",
49 "tsc-to-mjs": "bash tsc-to-mjs.sh",
50 "version": "npm run tsc && webpack && git add -A",
51 "build": "npm run tsc && webpack",
52 "serve": "http-server -p 5000 --silent",
53 "tsc-watch": "tsc -w",
54 "test": "npm run tsc && npm run test-core && npm run test-duplex && npm run test-commonjs && npm run test-webpack-import && npm run test-typings",
55 "test-sauce": "npm run build && node test/Sauce/Runner.js",
56 "test-commonjs": "jasmine test/spec/commonjs/requireSpec.js",
57 "test-webpack-import": "webpack --env.NODE_ENV=test && jasmine test/spec/webpack/importSpec.build.js",
58 "test-typings": "tsc test/spec/typings/typingsSpec.ts",
59 "test-duplex": "node --experimental-modules jasmine-run.mjs test/**/*[sS]pec.mjs",
60 "test-core": "node --experimental-modules jasmine-run.mjs 'test/spec/{jsonPatchTestsSpec,coreSpec,validateSpec}.mjs'",
61 "bench": "npm run bench-core && npm run bench-duplex",
62 "bench-core": "node test/spec/coreBenchmark.js",
63 "bench-duplex": "node test/spec/coreBenchmark.js && node test/spec/duplexBenchmark.js"
64 }
65}
Note: See TracBrowser for help on using the repository browser.