-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 1.84 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "scramby",
"version": "0.2.0",
"description": "Generates scrambles for twisty puzzles.",
"main": "lib/index.js",
"bin": {
"scramby": "lib/cli.js"
},
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "babel src --out-dir lib && flow-copy-source src lib",
"build-examples": "cd examples/scramble-with-draw && npm run build && cd ../scramble && npm run build",
"lint": "blyss | snazzy",
"fix": "blyss --fix",
"format": "prettier --single-quote --no-semi --write \"src/**/*.js\"",
"prepare": "npm run build",
"flow": "flow",
"flow-typed": "flow-typed",
"test": "npm run lint --silent && flow status && ava tests/**/*.js --fail-fast --verbose",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saadq/scramby.git"
},
"keywords": [
"rubiks",
"rubik's",
"cube",
"puzzle",
"scramble",
"scrambler",
"scramble-generator"
],
"author": "Saad Quadri",
"license": "MIT",
"bugs": {
"url": "https://github.com/saadq/scramby/issues"
},
"homepage": "https://github.com/saadq/scramby#readme",
"dependencies": {
"chalk": "^2.0.1",
"meow": "^3.7.0",
"raphael": "^2.2.7"
},
"devDependencies": {
"ava": "^0.20.0",
"babel-core": "^6.25.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"blyss": "^7.0.0",
"browserify": "^14.4.0",
"flow-bin": "^0.49.1",
"flow-copy-source": "^1.2.0",
"flow-typed": "^2.1.2",
"prettier": "^1.5.2",
"rimraf": "^2.6.1",
"snazzy": "^7.0.0"
},
"blyss": {
"ignore": [
"examples",
"src/scramblers"
]
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
],
"babel": {
"presets": [
"env",
"flow"
]
}
}
}