This repository has been archived by the owner on Dec 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.24 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
{
"name": "image-puzzle",
"version": "1.3.1",
"main": "index.js",
"description": "Javascript random image puzzle",
"author": "StefanoMagrassi <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Nexxa/image-puzzle#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Nexxa/image-puzzle.git"
},
"keywords": [
"image",
"puzzle",
"random"
],
"bugs": {
"url": "https://github.com/Nexxa/image-puzzle/issues"
},
"engines": [
{
"node": ">=0.12"
}
],
"browserify": {
"transform": [
"babelify"
]
},
"config": {
"babelify": "-t babelify",
"build_output": "./examples/image-puzzle.js -o ./examples/bundle.js"
},
"scripts": {
"clean": "rimraf ./examples/bundle.js",
"lint": "eslint index.js ./lib/.",
"pretest": "npm run lint",
"test:js": "babel-tape-runner ./tests/*.js | tap-spec",
"test:browser": "browserify $npm_package_config_babelify ./tests/browser/*.js | tape-run --render=\"tap-spec\"",
"test": "npm run test:js && npm run test:browser",
"example": "browserify -d $npm_package_config_babelify $npm_package_config_build_output",
"watch": "watchify -dv $npm_package_config_babelify $npm_package_config_build_output",
"preserve": "npm run clean && npm run example",
"serve": "npm run watch & http-server ./",
"start": "npm run serve -- -o"
},
"dependencies": {
"array-shuffle": "1.0.0",
"ramda": "0.19.1",
"virtual-dom": "2.1.1",
"virtual-dom-hammerjs": "1.1.1"
},
"devDependencies": {
"babel-cli": "6.4.5",
"babel-eslint": "4.1.8",
"babel-plugin-transform-member-expression-literals": "6.5.0",
"babel-plugin-transform-merge-sibling-variables": "6.5.0",
"babel-plugin-transform-minify-booleans": "6.5.0",
"babel-plugin-transform-property-literals": "6.5.0",
"babel-plugin-transform-remove-debugger": "6.5.0",
"babel-plugin-transform-strict-mode": "6.5.2",
"babel-preset-es2015": "6.5.0",
"babel-tape-runner": "2.0.0",
"babelify": "7.2.0",
"browserify": "13.0.0",
"eslint": "2.0.0",
"http-server": "0.8.5",
"rimraf": "2.5.1",
"tap-spec": "4.1.1",
"tape": "4.4.0",
"tape-run": "2.1.3",
"watchify": "3.7.0"
}
}