-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "hoax.js",
"version": "1.0.1",
"description": "Mock objects with ease",
"main": "dist/index.js",
"scripts": {
"pretest": "rm -rf dist && npm run transpile",
"test": "node_modules/.bin/mocha test/tests.js",
"transpile": "node_modules/babel-cli/bin/babel.js src --out-dir dist",
"eslint": "node_modules/.bin/eslint src/ test/",
"prepublishOnly": "npm run transpile"
},
"repository": {
"type": "git",
"url": "https://github.com/ecrmnn/hoax.js"
},
"babel": {
"presets": [
"env"
]
},
"keywords": [
"mock",
"mocks"
],
"author": {
"name": "Daniel Eckermann",
"email": "[email protected]",
"url": "http://danieleckermann.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ecrmnn/hoax.js/issues"
},
"homepage": "https://github.com/ecrmnn/hoax.js",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.0",
"eslint": "^4.12.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.4.2"
}
}