-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.73 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
{
"name": "csstime-example",
"version": "1.0.0",
"description": "Example app for testing csstime-gulp-tasks",
"main": "index.js",
"scripts": {
"test": "npm run test-less && npm run test-sass",
"test-less": "npm run clean && npm run less-debug && npm run vtest && npm run clean && npm run less-release && npm run vtest",
"test-sass": "npm run clean && npm run sass-debug && npm run vtest && npm run clean && npm run sass-release && npm run vtest",
"less-watch": "export CSSTIME_PREPROCESSOR=less && ./node_modules/.bin/gulp csstime-mode-watch",
"less-debug": "export CSSTIME_PREPROCESSOR=less && ./node_modules/.bin/gulp csstime-mode-debug",
"less-release": "export CSSTIME_PREPROCESSOR=less && ./node_modules/.bin/gulp csstime-mode-release",
"sass-watch": "export CSSTIME_PREPROCESSOR=sass && ./node_modules/.bin/gulp csstime-mode-watch",
"sass-debug": "export CSSTIME_PREPROCESSOR=sass && ./node_modules/.bin/gulp csstime-mode-debug",
"sass-release": "export CSSTIME_PREPROCESSOR=sass && ./node_modules/.bin/gulp csstime-mode-release",
"vtest": "./node_modules/.bin/phantomjs ./test/suits.js",
"clean": "rm -rf ./build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csstime/csstime-example.git"
},
"keywords": [
"csstime",
"assets"
],
"author": "Julia Rechkunova <julia.rechkunova@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/csstime/csstime-example/issues"
},
"homepage": "https://github.com/csstime/csstime-example#readme",
"devDependencies": {
"casperjs": "^1.1.0-beta5",
"csstime-gulp-tasks": "csstime/csstime-gulp-tasks#develop",
"gulp": "^3.8.11",
"phantomcss": "^1.0.0",
"phantomjs-prebuilt": "^2.1.5"
}
}