-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "spear-state",
"version": "0.0.0",
"description": "Library Description",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib dist coverage",
"lint": "eslint src test examples",
"test": "mocha --compilers js:babel-register --recursive",
"test-debug": "mocha --inspect-brk --compilers js:babel-register --recursive",
"test-watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/stevepotter/spear-state.git"
},
"keywords": [],
"author": "Stephen Potter",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevepotter/spear-state/issues"
},
"homepage": "https://github.com/stevepotter/spear-state",
"dependencies": {
"lodash": "^4.17.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.7.4",
"babel-eslint": "^8.2.2",
"babel-preset-es2015": "^6.6.0",
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"eslint": "^4.19.0",
"mocha": "^5.0.4"
}
}