-
Notifications
You must be signed in to change notification settings - Fork 1
/
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": "sysplot",
"version": "0.0.0-development",
"description": "A library that systematically generates a plane for plotting shapes, with a variety of algorithms to choose from.",
"main": "lib/sysplot.cjs.js",
"module": "lib/sysplot.esm.js",
"scripts": {
"build": "BABEL_ENV=production rollup -c",
"lint": "eslint --config .eslintrc ./src",
"semantic-release": "semantic-release",
"test": "jest ./src",
"travis-deploy-once": "travis-deploy-once"
},
"author": "Harry Hogg <[email protected]>",
"license": "MIT",
"repository": "[email protected]:HHogg/sysplot.git",
"keywords": [
"Archimedes",
"Concentric",
"Fermat",
"Spiral",
"Ulam",
"Vogel",
"algorithm",
"plotting"
],
"dependencies": {
"sat": "^0.7.0"
},
"devDependencies": {
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/git": "^5.0.0",
"@semantic-release/npm": "^3.3.1",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-preshape": "^1.0.0",
"eslint-plugin-react": "^7.8.2",
"jest": "^23.1.0",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"semantic-release": "^15.5.2",
"travis-deploy-once": "^5.0.0"
}
}