-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.21 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
{
"name": "viewctrls",
"version": "1.0.0",
"description": "jQuery widget for controls bound to a view/container",
"main": "dist/js/viewctrls.js",
"_holding-tank": {
"_note": "this object is for properties that need tmp moved",
"build": "npm run build:js && npm run build:css",
"test": "mocha-phantomjs testrunner.html",
"_endnote": "added this just so I don't worry about trailing commas"
},
"scripts": {
"build": "parallelshell 'npm run build:js' 'npm run build:css'",
"build:js": "node_modules/.bin/babel src/scripts/viewctrls.js -w -o dist/js/viewctrls.js",
"build:css": "sass --watch src/styles/styles.scss:dist/css/styles.css --style compressed",
"test": "mocha testrunner.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Made-of-Clay/viewctrls.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Made-of-Clay/viewctrls/issues"
},
"homepage": "https://github.com/Made-of-Clay/viewctrls#readme",
"dependencies": {
"jquery": "^2.2.4"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.5.3",
"parallelshell": "^2.0.0"
}
}