-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 920 Bytes
/
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
{
"name": "fractional-arithmetic",
"version": "1.2.3",
"description": "A javascript library for doing fractional arithmetic",
"keywords": [
"fraction",
"fractional",
"arithmetic",
"numerator",
"denominator"
],
"repository": {
"type": "git",
"url": "https://github.com/alex-georgiou/fractional-arithmetic.git"
},
"main": "fractional-arithmetic",
"author": {
"name": "Alexandros Georgiou",
"email": "alex.georgiou@gmail.com",
"url": "https://www.alexgeorgiou.gr"
},
"engines": {
"node": "*"
},
"license": "MIT",
"scripts": {
"build": "uglifyjs -o ./fractional-arithmetic.min.js ./fractional-arithmetic.js"
},
"devDependencies": {
"grunt": "^1.4.1",
"grunt-contrib-clean": "~1.0.0",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-contrib-uglify": "~2.0.0",
"grunt-gitinfo": "^0.1.9"
}
}