-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.83 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
{
"name": "responsive-style-attr",
"version": "0.0.7",
"main": "dist/resp-style-attr.cjs.js",
"module": "dist/resp-style-attr.esm.js",
"browser": "dist/resp-style-attr.umd.js",
"homepage": "https://mtillmann.github.io/responsive-style-attr/",
"repository": {
"type": "git",
"url": "https://github.com/Mtillmann/responsive-style-attr.git"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^27.0.2",
"@types/ms": "^0.7.31",
"bootstrap": "^5.1.1",
"bulma": "^0.9.3",
"foundation-sites": "^6.7.3",
"jest": "^27.3.1",
"node-sass": "^6.0.1",
"requirejs": "^2.3.6",
"rollup": "^2.57.0",
"terser": "^5.9.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"scripts": {
"merge": "git checkout dev -- dist src tests README.md package.json package-lock.json rollup.config.js tsconfig.json rollup.dev-config.js rollup.headless-config.js jest.config.js",
"build": "npm run ts:build-dev && npm run ts:build && npm run ts:build-headless && npm run js:build-min",
"js:build-min": "terser dist/resp-style-attr.umd.js --compress --mangle --comments false --output dist/resp-style-attr.umd.min.js",
"ts:build": "rollup -c",
"ts:build-headless": "rollup -c \"rollup.headless-config.js\"",
"ts:dev": "rollup --config \"rollup.dev-config.js\" -w",
"ts:build-dev": "rollup --config \"rollup.dev-config.js\"",
"test:watch": "jest --watch --maxWorkers=1",
"test": "jest --maxWorkers=1",
"sass:watch-dev": "node-sass --watch src/scss --output dev/css",
"sass:dev": "node-sass --recursive --source-comments --source-map true scss --output dev/css"
},
"files": [
"dist",
"src"
],
"author": {
"name": "Martin Tillman",
"email": "[email protected]"
},
"license": "MIT"
}