-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "@luchsamapparat/nim",
"version": "5.2.1",
"description": "Nim game library",
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"clean": "rimraf dist",
"lint": "tslint --project .",
"compile": "tsc --project .",
"build": "run-s clean lint compile",
"watch": "run-s clean dev",
"dev": "run-p \"compile -- --watch\" \"test -- --notify --watch\"",
"test": "jest --verbose",
"git-add": "git add .",
"git-push": "git push --follow-tags origin master",
"new-version": "standard-version --commit-all",
"release": "run-s build git-add new-version git-push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luchsamapparat/nim.git"
},
"keywords": [
"nim",
"game"
],
"files": [
"dist"
],
"author": "Marvin Luchs <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/luchsamapparat/nim/issues"
},
"homepage": "https://github.com/luchsamapparat/nim#readme",
"devDependencies": {
"@types/jest": "21.1.10",
"@types/lodash": "4.14.135",
"jest": "24.8.0",
"npm-run-all": "4.1.5",
"rimraf": "2.6.3",
"standard-version": "4.4.0",
"ts-jest": "24.0.2",
"tslint": "5.18.0",
"tslint-config-luchsamapparat": "1.6.0",
"typescript": "3.5.2"
},
"dependencies": {
"lodash": "4.17.11"
}
}