-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.17 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
{
"name": "mathematical",
"version": "1.0.0",
"description": "A Math module to help to deal with some Math problems",
"main": "./src/mathematical.js",
"scripts": {
"docs": "cat readme.head.md > README.md && node_modules/.bin/jsdoc2md src/**/*.js >> README.md",
"test": "./node_modules/mocha/bin/mocha test/**/*.spec.js",
"build": "npm test && ./node_modules/.bin/rollup --format iife --name Mathematical --input ./src/mathematical.js --output ./dist/mathematical.min.js && ./node_modules/uglify-js/bin/uglifyjs ./dist/mathematical.min.js --output=./dist/mathematical.min.js --compress --mangle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clovislima/mathematical.git"
},
"keywords": [
"Math",
"javascript"
],
"author": "Clovis Lima",
"license": "MIT",
"bugs": {
"url": "https://github.com/clovislima/mathematical/issues"
},
"homepage": "https://github.com/clovislima/mathematical#readme",
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"jsdoc-to-markdown": "^1.3.6",
"mocha": "^2.4.5",
"rollup": "^0.26.1",
"uglify": "^0.1.5"
}
}