-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.13 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
{
"name": "scribe-rpg-coin-purse",
"version": "1.2.5",
"description": "Fantasy RPG Currency Exchange",
"repository": {
"type": "git",
"url": "https://github.com/luetkemj/scribe-coin-purse.git"
},
"author": "luetkemj",
"license": "MIT",
"main": "build/index.js",
"scripts": {
"build": "npm run test && babel src -d build",
"clean:build": "rimraf build",
"clean:node_modules": "rimraf node_modules",
"clean": "npm run clean:build && npm run clean:node_modules",
"reinstall": "npm run clean && npm install",
"prepublish": "npm run build",
"test:mocha": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-core/register --recursive test/**",
"test:watch": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-core/register --recursive --watch test/**",
"test": "npm run test:mocha"
},
"dependencies": {
"lodash": "4.17.15"
},
"devDependencies": {
"babel-cli": "6.24.0",
"babel-plugin-transform-strict-mode": "6.22.0",
"babel-preset-env": "1.3.2",
"babel-preset-stage-1": "6.24.1",
"mocha": "3.2.0",
"rimraf": "2.6.1",
"should": "11.2.1"
}
}