forked from jonatanklosko/solution-analyzer
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "solution-analyzer",
"version": "0.1.6",
"description": "A library for analyzing Rubik's Cube solutions.",
"keywords": [
"Rubik's Cube",
"solution",
"speedcubing",
"cubing"
],
"author": "Jonatan Kłosko",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jonatanklosko/solution-analyzer.git"
},
"bugs": {
"url": "https://github.com/jonatanklosko/solution-analyzer/issues"
},
"homepage": "https://github.com/jonatanklosko/solution-analyzer",
"main": "dist/solution-analyzer.cjs.js",
"module": "dist/solution-analyzer.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"coveralls": "^3.0.2",
"jest": "^24.5.0",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^4.3.2"
},
"dependencies": {}
}