-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 974 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
41
{
"name": "normaliz",
"version": "0.2.0",
"description": "A tiny library that normalizes data according to a schema.",
"main": "dist/index.js",
"module": "src/index.js",
"directories": {
"test": "test"
},
"files": [
"dist",
"src"
],
"scripts": {
"start": "npm run bundle && npm run test",
"bundle": "rollup src/index.js --config --file dist/index.js --format umd --name \"normaliz\" -m",
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"normalize",
"normalizer",
"json",
"store"
],
"author": "Julien Elbaz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/elbywan/normaliz"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-jest": "^26.5.2",
"coveralls": "^3.1.0",
"jest": "^26.5.3",
"rollup": "^3.29.5",
"rollup-plugin-terser": "^7.0.2"
}
}