-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "check-preconditions",
"version": "1.0.0",
"description": "A small and simple ES3 compatible preconditions library for Node and the browser.",
"author": "Paul Nann",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pnann/check-preconditions.git"
},
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"scripts": {
"build": "tsc -p tsconfig.json && rollup -c",
"test": "tsc -p tsconfig-tests.json && nyc mocha --require source-map-support/register --recursive lib/tests/tst/**/*.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"typings": "lib/index.d.ts",
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"cache": true,
"check-coverage": true,
"extension": [
".js"
],
"exclude": [
"**/*.d.ts",
"coverage",
"lib/tests/tst"
],
"reporter": [
"lcov",
"html"
]
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/underscore": "^1.9.2",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"rollup": "^1.20.1",
"rollup-plugin-terser": "^5.1.1",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"underscore": "^1.9.1"
},
"dependencies": {}
}