-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.51 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
{
"name": "doorman-effect",
"description": "Simple animation for revealing elements.",
"version": "0.0.0",
"main": "src/doorman.js",
"scripts": {
"build": "npm run lint && npm run build:js && npm run minify && npm run copy",
"build:js": "rollup -c rollup.config.js",
"copy": "cp umd/doorman.min.js docs",
"watch": "chokidar 'src/**/*.js' -c 'npm run build'",
"develop": "karma start",
"lint": "standard src/**/*.js",
"minify": "uglifyjs umd/doorman.js -o umd/doorman.min.js",
"start": "npm run lint && npm run build && npm run serve",
"serve": "browser-sync start --server ./docs --files docs/*.html",
"test": "karma start --single-run"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-preset-es2015-rollup": "^3.0.0",
"browser-sync": "^2.18.6",
"chai": "^3.5.0",
"chokidar-cli": "^1.2.0",
"karma": "^1.4.0",
"karma-chai": "^0.1.0",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-rollup-plugin": "^0.2.4",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.14",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-watch": "^3.2.2",
"standard": "^8.6.0",
"uglify-js": "^2.7.5"
},
"repository": {
"url": "https://github.com/blivesta/doorman.git",
"type": "git"
},
"keywords": [
"effect"
],
"author": {
"name": "blivesta",
"url": "http://www.blivesta.com"
},
"license": "MIT"
}