-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.95 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
{
"name": "@lesniewski.pro/necktie",
"description": "A tool that binds your logic to the Document Object Model elements in an easy way.",
"version": "1.2.1",
"main": "dist/necktie.cjs.js",
"module": "dist/necktie.esm.js",
"browser": "dist/necktie.umd.js",
"typings": "dist/types/index.d.ts",
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@types/jest": "^26.0.20",
"@types/jsdom": "^16.2.7",
"jest": "^26.6.3",
"jsdom": "^16.5.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.21.0",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"tslib": "^2.4.0",
"tslint": "^6.1.3",
"tslint-config-standard": "^8.0.1",
"typescript": "^4.2.3"
},
"scripts": {
"start": "npm run dev",
"clean": "rimraf ./dist",
"lint": "tslint -p .",
"dev": "rollup -c -w",
"pretest": "npm run lint",
"test": "jest --verbose",
"coverage": "jest --coverage",
"prebuild": "npm run clean",
"build": "rollup -c",
"postbuild": "npm run format",
"prepare": "npm run build",
"preversion": "npm run test",
"version": "npm run build && git add -A dist/ src/",
"postversion": "git push && git push --tags",
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json,css,scss}'"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/leshniak/necktie.git"
},
"author": "Maciej Leśniewski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/leshniak/necktie/issues"
},
"homepage": "https://github.com/leshniak/necktie",
"tags": [
"typescript",
"dom",
"binding",
"browser",
"mutationobserver",
"selector",
"dom-manipulation"
],
"keywords": [
"typescript",
"dom",
"binding",
"browser",
"mutationobserver",
"selector",
"dom-manipulation"
]
}