-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.1 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "peryl",
"version": "1.4.18",
"description": "PeRyL TypeScript library and tools for rapid web development",
"keywords": [
"PeRyL",
"javascript",
"typescript",
"cache",
"dom",
"encode",
"events",
"form",
"hash",
"history",
"hsml",
"http",
"load",
"router",
"signal",
"template",
"validators"
],
"license": "GPL-3.0",
"author": {
"name": "Peter Rybar",
"email": "pr.rybar@gmail.com",
"url": "https://gitlab.com/peter-rybar"
},
"homepage": "https://gitlab.com/peter-rybar/peryl",
"repository": {
"type": "git",
"url": "https://gitlab.com/peter-rybar/peryl.git"
},
"bugs": {
"url": "https://gitlab.com/peter-rybar/peryl/issues"
},
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typescript": {
"main": "src/index.ts"
},
"scripts": {
"prepare": "npm run dist",
"prepublishOnly": "npm test",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"clean:tools": "cd tools; npm run clean",
"clean:idom": "cd incremental-dom; npm run clean",
"clean": "rm -rf build; rm -rf dist; run-s clean:tools clean:idom",
"clean:all:tools": "cd tools; npm run clean:all",
"clean:all:idom": "cd incremental-dom; npm run clean:all",
"clean:all": "npm run clean; rm -rf node_modules; run-s clean:all:tools clean:all:idom",
"tslint": "tslint --project tsconfig.json",
"build": "webpack --mode production",
"build:watch": "webpack --mode development --watch",
"demo": "npm run build:watch",
"dist:es6": "tsc --declaration --outDir dist",
"dist:umd": "webpack --config webpack.config.dist.js",
"dist:idom": "cd incremental-dom; npm run dist",
"dist": "run-s clean dist:es6 dist:umd dist:idom",
"test:jasmine": "ts-node node_modules/jasmine/bin/jasmine 'test/**/*.test.ts'",
"test:jasmine:watch": "nodemon --ext ts --watch test --watch src --exec 'ts-node node_modules/jasmine/bin/jasmine \"test/**/*.test.ts\"'",
"test": "run-s tslint test:jasmine",
"test:watch": "npm run test:jasmine:watch",
"start": "npm run demo"
},
"devDependencies": {
"@types/incremental-dom": "^0.5.0",
"@types/jasmine": "^3.5.4",
"@types/numeral": "0.0.22",
"awesome-typescript-loader": "^5.2.1",
"glob": "^7.1.6",
"incremental-dom": "^0.7.0",
"jasmine": "^3.5.0",
"moment": "^2.24.0",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"numeral": "^2.0.6",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"typescript": "^3.7.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"pre-commit": [
"test",
"dist",
"build"
],
"pre-push": [],
"prettier": {
"tabWidth": 4,
"printWidth": 80,
"overrides": [
{
"files": "package.json",
"options": {
"tabWidth": 2
}
},
{
"files": "*.yaml",
"options": {
"tabWidth": 2
}
}
]
},
"files": [
"src/**/*",
"dist/**/*",
"incremental-dom/dist/**/*"
]
}