-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.33 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "springer",
"version": "0.0.1",
"description": "A spring that generates realistic easing functions",
"license": "MIT",
"homepage": "https://github.com/tannerlinsley/springer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tannerlinsley/springer.git"
},
"keywords": [
"ease",
"easing",
"spring",
"physics",
"tension",
"damping",
"wobble"
],
"main": "lib/index.js",
"files": [
"lib/",
"springer.js"
],
"scripts": {
"build": "babel src --out-dir lib --source-maps inline",
"watch": "onchange 'src/**' -i -- npm run build",
"test": "standard",
"umd": "rimraf springer.js && webpack --config umd.webpack.js",
"prepublish": "npm run build && npm run umd",
"postpublish": "git push --tags"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"node_modules",
"dist",
"lib",
"example",
"springer.js",
"stories",
"docs"
]
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"dependencies": {
"onchange": "^3.2.1",
"rimraf": "^2.6.1",
"standard": "^10.0.2",
"webpack": "^2.4.1"
}
}