-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "@udidu/timeline",
"version": "1.0.1",
"description": "JavaScript Undo/Redo mechanism with simple API",
"main": "lib/index.js",
"typings": "lib/Timeline.d.ts",
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "npm t -- --watch --color --env=jsdom",
"tsc": "tsc",
"tsc:watch": "tsc -w",
"build:umd": "webpack",
"build": "tsc && npm run build:umd && npm run test:cov",
"release": "npm run build && release-it"
},
"files": [
"lib",
"umd"
],
"repository": {
"type": "git",
"url": "git+https://github.com/uditalias/timeline.git"
},
"keywords": [],
"author": {
"name": "Udi Talias",
"email": "udi.talias@gmail.com",
"url": "https://github.com/uditalias"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/uditalias/timeline/issues"
},
"homepage": "https://github.com/uditalias/timeline#readme",
"devDependencies": {
"@types/jest": "24.0.18",
"@types/node": "12.7.5",
"commitify": "1.0.0",
"jest": "24.9.0",
"release-it": "12.4.1",
"ts-jest": "24.1.0",
"ts-loader": "6.1.2",
"typescript": "3.6.3",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "4.40.2",
"webpack-cli": "3.3.9",
"webpack-merge": "4.2.2"
}
}