-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 739 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 739 Bytes
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
{
"name": "wave-pendulum",
"version": "0.2.0",
"description": "A wave pendulum animation.",
"main": "pendulum.coffee",
"scripts": {
"dev": "beefy index.coffee --live",
"start": "beefy index.coffee",
"hedwig": "browserify index.coffee | hedwig"
},
"author": "David Guttman",
"license": "MIT",
"devDependencies": {
"beefy": "~0.5.1",
"hedwig": "~0.4.0"
},
"browser": "pendulum.coffee",
"browserify": {
"transform": [
"coffeeify",
"simple-jadeify",
"sassify"
]
},
"dependencies": {
"bean": "~1.0.4",
"browserify": "~2.36.0",
"coffeeify": "~0.5.2",
"color": "^0.7.3",
"jade": "~0.35.0",
"sassify": "~0.1.2",
"simple-jadeify": "~2.0.1"
}
}