-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 KB
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
{
"name": "memory-game",
"version": "1.0.0",
"description": "Simple memory game with TypeScript and Rollup Edit",
"main": "src/app.js",
"scripts": {
"clean": "gulp clean",
"build": "gulp build",
"test": "mocha *.spec.js",
"start": "gulp start",
"deploy": "git-directory-deploy --directory bld --branch gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrHen/memory-game.git"
},
"author": "Adam Babcock",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrHen/memory-game/issues"
},
"homepage": "https://github.com/MrHen/memory-game#readme",
"devDependencies": {
"@types/d3": "^5.0.0",
"@types/express": "^4.16.0",
"@types/lodash-es": "^4.17.1",
"@types/node": "^10.11.7",
"del": "^3.0.0",
"express": "^4.16.4",
"git-directory-deploy": "^1.5.1",
"gulp": "gulpjs/gulp#4.0",
"gulp-nodemon": "^2.2.1",
"rollup": "^0.66.6",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-typescript2": "^0.17.1",
"typescript": "^3.1.3"
},
"dependencies": {
"d3": "^5.7.0",
"lodash-es": "^4.17.11"
}
}