-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "coptiy",
"version": "0.0.1",
"description": "Also known as max referencly and min copies. Remove all unnecessary data copies.",
"main": "lib/api.js",
"bin": {
"coptiy": "./lib/cli.js"
},
"scripts": {
"build": "babel src -d lib",
"pretest": "npm run build",
"prepublish": "npm run build",
"test": "dot-only-hunter && nyc mocha --compilers js:babel-register --recursive --timeout 10000 && standard src/**/*.js",
"test:dev": "nyc mocha --compilers js:babel-register --recursive --timeout 10000 && standard src/**/*.js",
"report": "nyc report",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BuggyOrg/coptiy.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/BuggyOrg/coptiy/issues"
},
"nyc": {
"include": [
"**/src/**/*.js",
"**/test/**/*.js"
],
"reporter": [
"html",
"lcov",
"text-summary"
]
},
"homepage": "https://github.com/BuggyOrg/coptiy#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"coveralls": "^2.12.0",
"dot-only-hunter": "^1.0.3",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"standard": "^10.0.1"
},
"dependencies": {
"@buggyorg/graphtools": "^0.4.0-pre.31",
"@buggyorg/rewrite": "^0.2.7",
"cli-ext": "^1.1.0",
"event-stream": "^3.3.4",
"yargs": "^7.1.0"
}
}