-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "number-theory-js",
"shortName": "number-theory",
"version": "0.0.0",
"description": "The Sieve of Eratosthenes (an ancient Greek prime number generator) as a JavaScript library",
"main": "dist/number-theory.js",
"homepage": "https://github.com/tom-weatherhead/number-theory-js",
"repository": {
"type": "git",
"url": "git://github.com/tom-weatherhead/number-theory-js.git"
},
"bugs": {
"url": "https://github.com/tom-weatherhead/number-theory-js/issues"
},
"scripts": {
"build": "npm i && grunt && npm pack",
"buildw": "npm i & grunt & npm pack",
"clean": "rm -rf node_modules && rm -f dist/* && rm -f package-lock.json",
"cleanw": "rmdir /Q /S node_modules & del /Q dist\\* & del package-lock.json",
"rebuild": "npm run clean & npm run build",
"rebuildw": "npm run cleanw & npm run buildw",
"start": "grunt",
"test": "grunt test"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"grunt": "^1.0.4",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-nodeunit": "^2.0.0",
"grunt-eslint": "^21.1.0",
"grunt-webpack": "^3.1.3",
"webpack": "^4.35.0"
},
"engineStrict": true,
"engines": {
"node": ">= 8"
},
"keywords": [
"Eratosthenes",
"Euclid",
"mathematics",
"prime numbers",
"sieve"
],
"author": "Tom Weatherhead <null@2hrd4u.org> (https://httpbin.org/status/418)",
"license": "MIT"
}