-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "@swordev/datamanager",
"version": "1.0.1",
"keywords": [
"dataview",
"arraybuffer",
"typedarray",
"binary",
"ejson",
"json",
"typescript"
],
"homepage": "https://github.com/swordev/datamanager-js.git",
"bugs": {
"url": "https://github.com/swordev/datamanager-js.git/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Juanra Gálvez",
"email": "[email protected]",
"url": "https://github.com/juanrgm"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/swordev/datamanager-js.git"
},
"scripts": {
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"prepare": "npm run build",
"release": "npm run format:check && npm test && npm run clean && npm run build && npm run prepare-release",
"prepare-release": "shx mkdir ./release/ && shx cp -r *.md package-lock.json package.json ./lib/* ./release/",
"format:check": "prettier -c ./src/**/*.ts ./test/**/*.ts",
"format": "prettier -w ./src/**/*.ts ./test/**/*.ts",
"clean": "shx rm -rf ./lib/ ./release/",
"test": "jest",
"build": "tsc",
"watch": "tsc -w"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"conventional-changelog-cli": "^2.1.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"shx": "^0.3.3",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=8.0.0"
}
}