-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.28 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
56
57
{
"name": "speco",
"version": "0.3.0",
"description": "Humble specs for JS data",
"source": "src/speco.js",
"module": "dist/speco.es.js",
"main": "dist/speco.js",
"umd:main": "dist/speco.umd.js",
"keywords": [
"specs",
"javascript"
],
"dependencies": {
"lodash.isnull": "^3.0.0",
"lodash.isnumber": "^3.0.3",
"lodash.isobject": "^3.0.2",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.zip": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-jest": "^24.7.1",
"bundlesize": "^0.18.0",
"coveralls": "^3.0.11",
"jest": "^24.7.1",
"microbundle": "^0.11.0"
},
"scripts": {
"build": "microbundle --sourcemap",
"release": "npm run build && npm t && git push && npm publish",
"test": "jest",
"test:watch": "jest --watchAll",
"test:ci": "jest --coverage --coverageReporters=text-lcov | coveralls",
"size": "bundlesize"
},
"jest": {
"watchPathIgnorePatterns": [
"node_modules"
]
},
"bundlesize": [
{
"path": "./dist/speco.js",
"maxSize": "2 Kb"
},
{
"path": "./dist/speco.es.js",
"maxSize": "2 Kb"
},
{
"path": "./dist/speco.umd.js",
"maxSize": "2 Kb"
}
]
}