-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
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
{
"name": "dom-transform",
"version": "2.1.0",
"description": "Applies CSS transform properties on an element",
"main": "index.js",
"scripts": {
"test": "npm run build && mocha-phantomjs ./test/runner.html",
"build": "browserify -d -r assert -r ./index.js:dom-transform > bundle.js",
"watch": "npm test && onchange '**/*.js' -- npm test",
"demo": "npm run build && open demo.html"
},
"keywords": [
"css",
"transform",
"animation"
],
"license": "MIT",
"author": {
"name": "Antoine Lehurt",
"email": "hello@kewah.com",
"url": "http://kewah.com",
"twitter": "https://twitter.com/kewah"
},
"repository": {
"type": "git",
"url": "https://github.com/nk-components/dom-transform"
},
"devDependencies": {
"browserify": "^13.0.1",
"mocha": "^2.5.3",
"mocha-phantomjs": "^4.1.0",
"onchange": "^2.5.0",
"phantomjs-prebuilt": "^2.1.7"
},
"dependencies": {
"is-array": "^1.0.1",
"prefix": "^1.0.0",
"to-string": "^0.2.0",
"trim": "0.0.1"
}
}