-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 942 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 942 Bytes
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": "lr-core",
"version": "0.8.2",
"description": "Line Rider core library",
"main": "index.js",
"scripts": {
"test": "make test",
"lint": "./node_modules/.bin/standard src",
"prepublish": "make build && rsync -av build/* . --exclude test-utils --exclude *.spec.js",
"postpublish": "rm -rf $(ls src)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conundrumer/lr-core.git"
},
"keywords": [
"line",
"rider"
],
"author": "David Lu",
"license": "MIT",
"bugs": {
"url": "https://github.com/conundrumer/lr-core/issues"
},
"homepage": "https://github.com/conundrumer/lr-core#readme",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015-node": "^6.1.0",
"easy-table": "^1.0.0",
"standard": "^7.1.1",
"tape": "^4.6.3"
},
"dependencies": {
"immy": "^0.4.1",
"lodash": "^4.13.1"
},
"optionalDependencies": {}
}