-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "@bemto/components",
"version": "0.1.0-alpha.5",
"description": "Abstract framework-agnostic bemto components",
"author": "Roman Komarov <[email protected]>",
"license": "MIT",
"files": [
"dist",
"Readme.md",
"LICENSE"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"scripts": {
"start": "rollup -c --watch",
"build": "rollup -c",
"build:testing": "rollup -c --environment TESTING:true",
"build:snapshots": "rollup -c --environment SNAPSHOTS:true",
"lint": "eslint src/**/*.js",
"test": "yarn build:testing && jest --passWithNoTests",
"prepublishOnly": "yarn lint && yarn build && yarn test"
},
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
},
"peerDependencies": {
"@bemto/core": "^0.1.0-alpha.6"
},
"devDependencies": {
"@bemto/core": "^0.1.0-alpha.6",
"@bemto/dev-core-setup": "^0.1.0"
},
"jest": {
"verbose": true,
"testEnvironment": "node"
}
}