-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "splitting",
"version": "1.1.0",
"description": "Micro-library to split a DOM element's words & chars into elements populated with CSS vars.",
"main": "dist/splitting.js",
"scripts": {
"build": "npm run build:lite && npm run build:lite:compressed && npm run build:all && npm run build:all:compressed",
"build:all": "rollup -c config/rollup.all.js",
"build:all:compressed": "rollup -c config/rollup.all.compressed.js",
"build:lite": "rollup -c config/rollup.lite.js",
"build:lite:compressed": "rollup -c config/rollup.lite.compressed.js",
"version": "npm run build && git add .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shshaw/splitting.git"
},
"files": [
"dist/*"
],
"keywords": [
"split",
"text",
"char",
"word",
"splitting",
"css",
"vars"
],
"author": "Stephen Shaw ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/shshaw/splitting/issues"
},
"homepage": "https://splitting.js.org",
"devDependencies": {
"babel-jest": "^23.4.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"jest": "^29.3.1",
"jsdom": "^24.1.0",
"rollup": "^0.55.5",
"rollup-plugin-filesize": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0",
"uglify-js": "^3.3.11"
},
"jest": {
"transform": {
"^.+\\.js": "babel-jest"
},
"moduleFileExtensions": [
"js"
],
"testRegex": "tests/features/.*\\.js$",
"setupTestFrameworkScriptFile": "./tests/_setup.js"
},
"dependencies": {}
}