-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1017 Bytes
/
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
{
"name": "@bemto/core",
"version": "0.1.0-alpha.6",
"description": "",
"author": "Roman Komarov <[email protected]>",
"license": "MIT",
"files": [
"dist",
"Readme.md",
"LICENSE"
],
"main": "dist/bemto.cjs.js",
"module": "dist/bemto.esm.js",
"browser": "dist/bemto.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",
"prepublishOnly": "yarn lint && yarn build && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bemto/core.git"
},
"bugs": {
"url": "https://github.com/bemto/core/issues"
},
"homepage": "https://github.com/bemto/core#readme", "dependencies": {
},
"devDependencies": {
"@bemto/dev-core-setup": "^0.1.0"
},
"jest": {
"verbose": true,
"testEnvironment": "node"
}
}