-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.43 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
{
"name": "arc-theme",
"version": "0.2.3",
"description": "ARc theming utilities and resources",
"license": "MIT",
"repository": "diegohaz/arc-theme",
"main": "dist/index.js",
"author": {
"name": "Diego Haz",
"email": "[email protected]",
"url": "github.com/diegohaz"
},
"engines": {
"node": ">=4"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"lint": "eslint src test",
"coverage": "npm test -- --coverage && opn coverage/lcov-report/index.html",
"clean": "del dist",
"prebuild": "npm run clean",
"build": "babel src -d dist",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"prepublish": "npm run lint && npm test && npm run build",
"postpublish": "git push origin master --follow-tags"
},
"jest": {
"testRegex": "/test/.*",
"testEnvironment": "node"
},
"keywords": [
"arc",
"theme"
],
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^20.0.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"del-cli": "^1.0.0",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"jest-cli": "^20.0.2",
"opn-cli": "^3.1.0"
}
}