-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "tornavida",
"version": "1.0.8",
"description": "Tool to make an Javascript developer's life easier",
"author": "Enes Usta",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/enesusta/tornavida.git"
},
"bugs": {
"url": "https://github.com/enesusta/tornavida/issues"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"files": [
"math/*",
"text/*",
"util/*",
"hash/*"
],
"scripts": {
"build": "npm run clean && rollup -c",
"start": "rollup -c -w",
"prepare": "yarn run build",
"test": "jest",
"cov": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"clean": "rm -rf math text util hash dist"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@types/jest": "^26.0.3",
"coveralls": "^3.1.0",
"jest": "^26.0.1",
"rollup": "^2.15.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.19.3",
"ts-jest": "^26.1.1",
"tslib": "^2.0.0",
"typescript": "^3.9.6"
},
"homepage": "https://github.com/enesusta/tornavida#readme",
"publishConfig": {
"access": "public"
}
}