forked from nowcando/nowjs-bpmn-moddle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.63 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.63 KB
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
{
"name": "nowjs-bpmn-moddle",
"version": "1.14.0",
"description": "nowjs moddle extensions for BPMN 2.0",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"typescript": {
"definition": "lib/index.d.ts"
},
"directories": {
"test": "test"
},
"scripts": {
"debug": "npm run-script build:debug ",
"build:test": "npm run-script clean:dist && tsc --p ./tsconfig.test.json",
"build:debug": "npm run-script clean:dist && tsc --p ./tsconfig.debug.json",
"build:release": "npm run-script clean:release && tsc --p ./tsconfig.release.json",
"clean": "npm run clean:dist",
"clean:dist": "rm -rf ./dist/*",
"clean:release": "rm -rf ./lib/*",
"test": "jest --runInBand --no-cache --config ./jest.json",
"test:watch": "jest --runInBand --watch --config ./jest.json",
"coverage": " jest --runInBand --no-cache --coverage --config ./jest.json ",
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "tslint --fix 'src/**/*.ts' 'test/**/*.ts' -t verbose",
"prepublishOnly": "npm run lint && npm run test && npm run build:release",
"preversion": "npm test",
"version": "npm run build:release ",
"postversion": "npm run clean:release",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags",
"changelog:update": "",
"docs:update": "typedoc --out ./docs/documentation/ ./src/ && git commit -a -m 'update: The documentation updated.'",
"docs:clean": "rm -rf ./docs/documentation/*",
"docs:publish": "{{PUBLISH TO DOC_SITE_URL}}"
},
"keywords": [
"nowjs",
"nowjs-bpmn-moddle",
"nowjs-bpmn",
"nowcando",
"bpms",
"bpmn",
"bpmn2"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nowcando/nowjs-bpmn-moddle.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nowcando/nowjs-bpmn-moddle/issues"
},
"homepage": "https://github.com/nowcando/nowjs-bpmn-moddle#readme",
"devDependencies": {
"@types/jest": "^24.9.0",
"generate-changelog": "^1.8.0",
"jest": ">=24.9.0",
"jest-environment-node-debug": ">=2.0.0",
"ts-jest": "^24.3.0",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
}
}