-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
33 lines (33 loc) · 961 Bytes
/
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
{
"name": "ityped",
"version": "1.0.3",
"description": "Dead simple animated typing, with no dependencies.",
"main": "dist/index.min.js",
"module": "src/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"prebuild": "npm run clean",
"pre:commit": "yarn build",
"build": "npm run rollup & npm run rollup:production",
"build:watch": "npm run rollup -- --watch",
"clean": "del-cli \"dist/**/*\"",
"rollup": "rollup --config",
"rollup:production": "cross-env NODE_ENV=production npm run rollup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.3",
"del-cli": "^1.1.0",
"rollup": "^0.53.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-uglify": "^2.0.1",
"babel-cli": "^6.26.0",
"rollup-watch": "^4.3.1"
},
"author": "Luis Vinicius <luisviniciusbarreto@gmail.com>",
"license": "MIT"
}