-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.01 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
{
"name": "@bitacode/json-recognizer",
"version": "0.0.2",
"description": "Recognize JSONs inside string flow",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "npm install; tsc; cp LICENSE build; cp package.json build; cd build; npm pack --pack-destination ../integration",
"buildPublish": "npm install; tsc; cp README.md build; cp LICENSE build; cp package.json build; cd build; npm publish --access public",
"test": "jest --passWithNoTests --runInBand --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccarcaci/json-recognizer.git"
},
"keywords": [
"json"
],
"author": "ccarcaci",
"license": "MIT",
"bugs": {
"url": "https://github.com/ccarcaci/json-recognizer/issues"
},
"homepage": "https://github.com/ccarcaci/json-recognizer#readme",
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^16.11.65",
"jest": "^27.5.1",
"ts-jest": "^27.1.5"
},
"volta": {
"node": "16.17.0"
}
}