This repository has been archived by the owner on Nov 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 1.96 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
{
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"standard --fix",
"git add"
]
},
"scripts": {
"prepublishOnly": "yarn test && yarn run build",
"format": "prettier {src,demo}/**/*.js --write && standard '{src,demo,fixtures}/**/*.js' --fix",
"lint": "standard '{src,demo,fixtures}/**/*.js'",
"build": "microbundle --strict",
"dev": "microbundle watch",
"test": "ava --verbose",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs && mv docs/.vuepress/dist dist",
"now-build": "yarn run docs:build"
},
"standard": {
"env": [
"browser"
]
},
"prettier": {
"tabWidth": 2,
"semi": false,
"printWidth": 100,
"singleQuote": true
},
"name": "budu",
"version": "1.0.0",
"description": "Library to batch DOM reads and writes to reduce layout thrashing and getting a better performance for animations and visualisations.",
"main": "lib/budu.js",
"umd:main": "lib/budu.umd.js",
"module": "lib/budu.mjs",
"source": "src/index.js",
"files": [
"lib"
],
"ava": {
"files": [
"src/**/*.test.js",
"!fixtures/**/*"
],
"require": [
"esm"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/sto3psl/budu.git"
},
"keywords": [
"dom",
"fast",
"batch",
"read",
"write",
"animation",
"style",
"layout"
],
"author": "Fabian Guendel",
"license": "MIT",
"bugs": {
"url": "https://github.com/sto3psl/budu/issues"
},
"homepage": "https://github.com/sto3psl/budu#readme",
"devDependencies": {
"ava": "^2.4.0",
"esm": "^3.2.25",
"husky": "^3.0.5",
"lint-staged": "^9.4.0",
"microbundle": "^0.11.0",
"parcel": "^1.12.3",
"prettier": "^1.18.2",
"raf": "^3.4.1",
"sinon": "^7.5.0",
"standard": "^14.3.1",
"tap-xunit": "^2.4.1",
"vuepress": "^1.1.0"
}
}