-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.97 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": "@fczbkk/gap-grid",
"version": "2.1.2",
"description": "Generates list of boxes that will cover whole canvas, excepts defined gaps.",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/fczbkk/gap-grid.git"
},
"author": {
"name": "Riki Fridrich",
"email": "riki@fczbkk.com",
"url": "https://github.com/fczbkk"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fczbkk/gap-grid/issues",
"email": "riki@fczbkk.com"
},
"homepage": "https://github.com/fczbkk/gap-grid#readme",
"scripts": {
"dev": "npm run test:dev",
"test:dev": "npm run test -- --no-single-run --auto-watch",
"test": "karma start ./karma.conf.js",
"cleanup": "rimraf temp lib",
"prebuild": "npm run eslint:build && npm run cleanup && npm run test",
"build": "npm run compile",
"compile": "babel src -d lib",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"preversion": "npm run cleanup && npm prune && npm install",
"postversion": "git push && git push --tags && npm publish --access=public",
"version": "npm run build && npm run changelog && git add -A",
"doc": "documentation readme ./src/index.js -s 'Documentation'",
"eslint": "eslint ./{src,test}/**/*.js",
"eslint:build": "npm run eslint -- --max-warnings 0"
},
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"conventional-changelog-cli": "^1.2.0",
"documentation": "^5.2.1",
"eslint": "^4.4.1",
"eslint-loader": "^1.5.0",
"jasmine-core": "^2.4.1",
"karma": "^1.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.1",
"karma-webpack": "^2.0.4",
"mocha": "^3.0.2",
"phantomjs-prebuilt": "^2.1.12",
"rimraf": "^2.5.4",
"webpack": "^3.5.4"
}
}