p-graph/package.json

35 строки
727 B
JSON
Исходник Обычный вид История

2020-05-25 23:01:22 +03:00
{
"name": "p-graph",
2021-10-26 10:12:04 +03:00
"version": "1.1.2",
2020-05-25 23:01:22 +03:00
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"start": "tsc -w --preserveWatchOutput",
"test": "jest",
2023-02-21 23:15:48 +03:00
"release": "beachball publish",
2020-07-14 06:32:18 +03:00
"checkchange": "beachball check",
2020-05-25 23:01:22 +03:00
"change": "beachball change"
},
"repository": {
2020-05-25 23:14:03 +03:00
"url": "https://github.com/microsoft/p-graph"
2020-05-25 23:01:22 +03:00
},
"devDependencies": {
"@types/jest": "^25.2.1",
2023-02-21 23:15:48 +03:00
"beachball": "^2.0.0",
2020-05-25 23:01:22 +03:00
"jest": "^25.5.3",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
2023-02-21 23:15:48 +03:00
},
"beachball": {
"ignorePatterns": [
".*ignore",
".github/**",
"jest.config.js",
"prettier.config.js",
"yarn.lock"
]
2020-05-25 23:01:22 +03:00
}
}