-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "omyumyum",
"version": "0.5.7",
"description": "The small data validation library",
"main": "dist/OmYumYum.umd.js",
"typings": "dist/OmYumYum.d.ts",
"scripts": {
"build": "rm -rf dist && tsc && rollup -c",
"test": "rm -rf coverage && nyc ts-mocha -p tsconfig.tests.json -r esm tests/**/*.test.ts",
"coveralls": "cat coverage/lcov.info | node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Riim/omyumyum.git"
},
"author": "Dmitry Vibe",
"license": "MIT",
"bugs": {
"url": "https://github.com/Riim/omyumyum/issues"
},
"homepage": "https://github.com/Riim/omyumyum#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/sinon": "^10.0.2",
"chai": "^4.3.4",
"esm": "^3.2.25",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"rollup": "^2.50.6",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-tslint": "^0.2.2",
"rollup-plugin-typescript2": "^0.30.0",
"sinon": "^11.1.1",
"ts-mocha": "^8.0.0",
"typescript": "^4.3.2"
}
}