forked from byronhulcher/tarot-deck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
{
"name": "tarot-deck",
"version": "2.0.1",
"description": "Tarot for Node!",
"main": "dist/index.js",
"scripts": {
"preversion": "npm run clean && npm run build",
"build": "babel src --out-dir dist --source-maps inline",
"clean": "rimraf dist",
"test": "npm run lint && npm run preversion && node tests.js",
"lint": "eslint src",
"changelog": "github-changes -o byronhulcher -r tarot-deck -b master -f ./CHANGELOG.md --order-semver --use-commit-body",
"lint-tests": "eslint tests.js --fix"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"corpora": "https://github.com/dariusk/corpora/archive/master.tar.gz",
"knuth-shuffle": "^1.0.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-eslint": "^5.0.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.4.3",
"eslint": "^1.1.0",
"github-changes": "^1.0.2",
"rimraf": "^2.5.2",
"tape": "^4.4.0"
},
"keywords": [
"tarot"
],
"author": "byronhulcher",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/byronhulcher/tarot-deck.git"
}
}