-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "sprite-grid-layout",
"version": "1.0.0",
"description": "Grid Layout Engine for SpriteJS",
"main": "./lib/index.js",
"directories": {
"doc": "doc"
},
"dependencies": {
"@babel/runtime": "^7.4.4"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"ava": "^1.4.1",
"eslint": "^5.16.0",
"eslint-config-sprite": "^1.0.6"
},
"scripts": {
"lint": "eslint 'src/**/*.js' --fix",
"build": "rm -rf lib/* && babel src -d lib",
"compile": "rm -rf lib/* && babel src -d lib --watch",
"test": "ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/berwin/sprite-grid-layout.git"
},
"keywords": [
"grid",
"spritejs"
],
"author": "Berwin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/berwin/sprite-grid-layout/issues"
},
"homepage": "https://github.com/berwin/sprite-grid-layout#readme"
}