-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.63 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.63 KB
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
{
"name": "sol",
"version": "3.2.14",
"description": "Atomic styles and javascript for MoMA digital properties",
"main": "dist/sol.js",
"module": "src/js/main.js",
"style": "dist/sol.css",
"repository": "git://github.com/MuseumofModernArt/sol.git",
"author": "MoMA Digital Media",
"license": "SEE LICENSE IN README.MD",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"install-sass": "SASS=sass/sass/sass; if brew ls --versions $SASS; then brew upgrade $SASS; else brew install $SASS; fi",
"test": "jest",
"build-sass-dev": "sass src/stylesheets/main.scss:dist/sol.css",
"build-sass-prod": "sass src/stylesheets/main.scss:dist/sol.min.css --style=compressed",
"build-webpack-prod": "webpack -p --config webpack.config.js --mode production",
"build-webpack-dev": "webpack -p --config webpack.config.js --mode development",
"build": "yarn run build-sass-dev && yarn run build-sass-prod && yarn run build-webpack-prod",
"build-dev": "yarn run build-sass-dev && yarn run build-webpack-dev",
"watch-sass": "sass --watch --poll src/stylesheets/main.scss:dist/sol.css",
"watch-webpack": "webpack --progress --watch --config webpack.config.js --mode development",
"watch": "yarn watch-sass & yarn watch-webpack",
"prepublishOnly": "yarn build",
"release": "./bin/release.sh"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"babel-loader": "^8.1.0",
"jest": "^26.0.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"balance-text": "^3.3.0"
},
"engines": {
"node": "20"
}
}