-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.06 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.06 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
{
"name": "tickit",
"version": "0.0.0",
"description": "A basic ticker that uses CSS animations & vanilla JavaScript.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:copy": "cp src/css/tickit.css dist/css/tickit.css",
"build:js": "babel src/js/tickit.js -o dist/js/tickit.js",
"build:lint": "eslint src/**/*.js",
"build:prefix": "postcss --use autoprefixer --autoprefixer.browsers \"> 1%, last 2 version\" -r dist/css/tickit.css dist/css/tickit.css",
"build": "npm run build:lint && npm run build:copy && npm run build:prefix && npm run build:js"
},
"repository": {
"type": "git",
"url": "git://github.com/jonchretien/tickit.git"
},
"author": "Jon Chretien",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-cli": "^6.5.1",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.0.2",
"eslint-plugin-react": "^4.1.0",
"postcss-cli": "^2.5.1"
}
}