-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 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
{
"name": "@vrembem/core",
"description": "The core variables, functions and mixins for Vrembem components.",
"version": "3.0.20",
"license": "MIT",
"keywords": [
"BEM",
"front-end",
"component",
"core"
],
"source": "index.js",
"main": "dist/scripts.js",
"module": "dist/scripts.esm.js",
"unpkg": "dist/scripts.umd.js",
"sass": "index.scss",
"style": "dist/styles.css",
"files": [
"dev",
"dist",
"src",
"index.js",
"index.scss",
"root.scss"
],
"scripts": {
"build": "npm-run-all clean scripts root",
"clean": "del dev && del dist",
"scripts": "npm-run-all scripts:dev scripts:dist",
"scripts:dev": "npm run scripts:dist -- --output=dev/scripts.js --no-compress",
"scripts:dist": "microbundle --name=vrembem.core",
"root": "npm-run-all root:dev root:dist",
"root:dev": "sass src/scss/root:dev --load-path=../../node_modules",
"root:dist": "sass src/scss/root:dist --load-path=../../node_modules --style=compressed",
"watch": "concurrently --kill-others 'npm run watch:scripts' 'npm run watch:root'",
"watch:scripts": "nodemon -e js -x 'npm run scripts' -i dev -i dist",
"watch:root": "nodemon -e scss -x 'npm run root'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebnitu/vrembem.git",
"directory": "packages/core"
},
"homepage": "https://github.com/sebnitu/vrembem/tree/main/packages/core#readme",
"publishConfig": {
"access": "public"
},
"gitHead": "d966f513f86f66dddf93ed60ddefe51124562dc0"
}