-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
55
56
57
58
59
{
"name": "nsp-math",
"version": "0.0.1",
"description": "A simple math library to demonstrate a modern setup of a library or an NPM package",
"main": "build/index.min.js",
"browser": "build/index.umd.min.js",
"module": "build/index.es.min.js",
"engines": {
"node": ">= 6"
},
"scripts": {
"ci": "npx rimraf node_modules && npm install",
"lint": "npx eslint ./",
"lint:fix": "npx eslint ./ --fix",
"format": "npx prettier-eslint \"$PWD/src/**/*.js\" --write",
"build": "rimraf build && npx rollup -c",
"prepublishOnly": "npm run build",
"test": "npx mocha --require @babel/register \"test/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/npranto/math.js.git"
},
"keywords": [
"math.js",
"modern-web-dev",
"setup",
"library",
"package"
],
"author": "Nazmuz Pranto <npranto@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/npranto/math.js/issues"
},
"homepage": "https://github.com/npranto/math.js#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.5",
"mocha": "^7.1.2",
"prettier-eslint": "^9.0.1",
"prettier-eslint-cli": "^5.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.7.6",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0"
},
"dependencies": {
"lodash": "^4.17.15"
}
}