-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.2 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.2 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@biotope/element",
"title": "Biotope Element",
"version": "4.3.0",
"description": "Biotope Element",
"main": "lib/esm/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"scripts": {
"start": "npm run docs",
"prepublishOnly": "npm run build",
"build": "cpy src/*.scss lib && rollup -c",
"watch": "cpy src/*.scss lib && rollup -c -w",
"release": "np",
"docs": "cd website && npm start",
"netlify": "mv docs docs-dist",
"test": "jest",
"test:report": "npm run test && codecov",
"test:watch": "jest --watch",
"lint": "npm run lint:code && npm run lint:tests",
"lint:code": "biotope-quality-gate -c lint.config.js -p src,./*.js,examples/src,types",
"lint:code:fix": "biotope-quality-gate -c lint.config.js -p src,./*.js,examples/src,types -f",
"lint:tests": "biotope-quality-gate -p tests -t",
"lint:tests:fix": "biotope-quality-gate -p tests -t -f",
"lint:website": "biotope-quality-gate -p website -t",
"lint:website:fix": "biotope-quality-gate -p website -t -f",
"version": "VERSION=$npm_package_version && cd website && npm run version $VERSION"
},
"repository": {
"type": "git",
"url": "git+https://github.com/biotope/biotope-element.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/biotope/biotope-element/issues"
},
"homepage": "https://github.com/biotope/biotope-element#readme",
"devDependencies": {
"@babel/core": "~7.8.4",
"@babel/preset-env": "~7.8.4",
"@biotope/quality-gate": "~1.0",
"@types/jest": "~25.1.2",
"basichtml": "~1.1",
"basichtml-elements": "~0.1",
"codecov": "~3.7",
"cpy-cli": "~3.1.0",
"docusaurus": "~1.14",
"eslint-plugin-jest": "~23.7.0",
"jest": "~25.1.0",
"lighterhtml": "~2.0",
"np": "~6.1.0",
"prismjs": "~1.21.0",
"rollup": "~1.31.1",
"rollup-plugin-babel": "~4.3",
"rollup-plugin-commonjs": "~10.1",
"rollup-plugin-node-resolve": "~5.2",
"rollup-plugin-progress": "~1.1",
"rollup-plugin-typescript2": "~0.26.0",
"rollup-plugin-uglify": "~6.0",
"rollup-plugin-visualizer": "~3.3",
"ts-jest": "~25.2.0",
"typescript": "~3.7"
}
}