forked from 418sec/jsonpointerx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.43 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "jsonpointerx",
"version": "1.0.30",
"description": "the x-th jsonpointer (rfc6901) implementation",
"main": "./main/index.js",
"module": "./module/index.js",
"types": "./main/index.d.ts",
"tags": [
"javascript",
"typescript",
"json pointer",
"rfc6901"
],
"author": {
"email": "www.gms@gmx.at",
"name": "Guenter Sandner"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gms1/jsonpointerx.git"
},
"bugs": {
"url": "https://github.com/gms1/jsonpointerx/issues"
},
"homepage": "https://github.com/gms1/jsonpointerx",
"scripts": {
"clean": "rimraf dist/*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"build:umd": "rollup -c rollup.config.lib.umd.js",
"build": "npm run build:main && npm run build:module && npm run build:umd",
"rebuild": "npm run clean && npm run build",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test:run": "jasmine-ts",
"test": "npm run build:main && npm run test:run",
"watch": "tsc -w -p tsconfig.json",
"coverage:run": "nyc -e .ts -x \"**/*.spec.ts\" jasmine-ts",
"coverage:report": "nyc report --reporter=text-lcov",
"coverage:html": "nyc report --reporter=html",
"coverage:coveralls": "nyc report --reporter=text-lcov | coveralls",
"docs": "compodoc .",
"prepublishOnly": "echo \"ERROR: please use the dist-folder for publishing\" && exit 1",
"release:build": "npm run clean && npm run build && npm run test:run && npm run lint && npm run _pubprep",
"release:publish": "npm run docs && cd dist && npm --access public publish",
"_pubprep": "build/sh/tsrun publish-prepare.ts",
"postlint": "npm run prettier-diff",
"prettier-diff": "prettier --list-different 'src/**/*.ts'",
"prettier": "prettier --write 'src/**/*.ts'"
},
"dependencies": {},
"devDependencies": {
"@compodoc/compodoc": "^1.1.11",
"@types/fs-extra": "^9.0.1",
"@types/jasmine": "^3.5.14",
"@types/node": "^14.11.8",
"coveralls": "^3.1.0",
"fs-extra": "^9.0.1",
"jasmine": "^3.6.1",
"jasmine-spec-reporter": "^6.0.0",
"jasmine-ts": "^0.3.0",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"rollup": "^2.29.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "~3.6"
},
"typescript": {
"definition": "./index.d.ts"
}
}