-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.19 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
50
51
52
53
54
55
{
"version": "2.3.0",
"description": "Tiny css in js library",
"license": "MIT",
"repository": "herber/vxv",
"author": {
"name": "Tobias Herber",
"email": "tobihrbr@gmail.com",
"url": "tobihrbr.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "formatted && yarn build && jest",
"bootstrap": "lerna bootstrap",
"build": "yarn bootstrap && lerna run build",
"dev": "lerna run dev",
"site": "browserify site/index.js -o site/dist/bundle.js"
},
"devDependencies": {
"browserify": "^16.1.0",
"codecov": "^3.0.0",
"formatted": "^1.0.0",
"jest": "^22.1.4",
"jsdom": "^11.6.2",
"lerna": "^2.5.1",
"vxv": "^3.1.0",
"xou": "^1.0.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coverageReporters": [
"lcov",
"text"
],
"testMatch": [
"**/test/**"
],
"collectCoverageOnlyFrom": {
"packages/vxv-insert/index.js": false,
"packages/vxv/index.js": false,
"packages/vxv-hash/dist/vxv-hash.js": false,
"packages/vxv-parser/dist/vxv-parser.js": false,
"packages/vxv-state/dist/vxv-state.js": false,
"packages/vxv-server/index.js": false
}
},
"formatted": {
"ignore": [
"**/node_modules/**"
]
}
}