-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.74 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
{
"version": "0.0.1",
"name": "fincher",
"description": "",
"author": "NerdPitch Team <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/NerdPitch/fincher",
"repository": {
"type": "git",
"url": "https://github.com/NerdPitch/fincher.git"
},
"bugs": {
"url": "https://github.com/NerdPitch/fincher/issues"
},
"main": "index.js",
"scripts": {
"clean": "rm -rf lib",
"compile": "babel -d lib src",
"compile:watch": "npm run compile -- --watch",
"lint": "eslint src test",
"lint:fix": "npm run lint -- --fix",
"test": "mocha --compilers js:babel-core/register --recursive",
"test:watch": "npm run test -- --watch",
"test:cov": "babel-node $(npm bin)/istanbul cover $(npm bin)/_mocha -- --recursive",
"test-bundle": "cd test/public && webpack",
"test-bundle:watch": "cd test/public && webpack --watch",
"preversion": "npm run lint && npm test",
"version": "npm run compile && git add -A lib",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-standard": "^1.3.1",
"istanbul": "^1.0.0-alpha",
"jsdom": "8.0.2",
"jsdom-global": "1.6.1",
"mocha": "^2.3.4",
"sinon": "^1.17.3"
},
"engines": {
"node": ">=4.2.1",
"npm": ">=3"
}
}