-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.62 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.62 KB
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": "v",
"version": "1.0.0",
"description": "Library Description",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/v.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/v.min.js",
"clean": "rimraf lib dist coverage",
"lint": "eslint src test examples",
"test": "mocha --compilers js:babel-register $(find src -name '*.test.js')",
"test:cov": "babel-node ./node_modules/isparta/bin/isparta cover ./node_modules/mocha/bin/_mocha -- $(find src -name '*.test.js')",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/fedordead/v.git"
},
"keywords": [],
"author": [
{
"name": "Dave Berner",
"email": "davidajberner@gmail.com",
"url": "http://davidberner.co.uk/",
"twitter": "@DaveOrDead"
},
{
"name": "Bard Hovde",
"email": "bnhovde@gmail.com",
"url": "http://bardhovde.com/",
"twitter": "@bardguyver"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fedordead/v/issues"
},
"homepage": "https://github.com/fedordead/v",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"cross-env": "^1.0.7",
"eslint": "^2.5.3",
"isparta": "^4.0.0",
"jsdom": "^9.2.1",
"mocha": "^2.4.5",
"mocha-jsdom": "^1.1.0",
"rimraf": "^2.5.2",
"webpack": "^1.12.14"
}
}