-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "mensuration-js",
"version": "1.0.4",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "nyc mocha --require @babel/register",
"build": "npm run lint && babel ./src -d ./lib",
"lint": "eslint ./src",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhieshekumar/mensuration.git"
},
"keywords": [
"npm",
"node",
"mensuration",
"javascript",
"geometry",
"shapes"
],
"author": "Abhishek Kumar",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-private-methods": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.0.0",
"eslint-config-google": "^0.14.0",
"http-server": "^0.12.3",
"mocha": "^7.1.2",
"nyc": "^15.0.1"
},
"bugs": {
"url": "https://github.com/abhieshekumar/mensuration/issues"
},
"homepage": "https://github.com/abhieshekumar/mensuration#readme",
"dependencies": {},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}