-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "warpjs",
"version": "1.0.8",
"description": "Warp, distort, bend, twist and smudge your SVG's directly in the browser",
"main": "dist/warp.js",
"files": [
"dist/warp.js",
"dist/warp.js.map",
"src"
],
"scripts": {
"test": "NODE_ENV=test nyc mocha-webpack --webpack-config ./build/webpack.test.js \"test/main.js\"",
"build": "./node_modules/webpack/bin/webpack.js --config ./build/webpack.build.js",
"test:watch": "npm run test -- --watch",
"build:watch": "npm run build -- --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benjamminf/warpjs.git"
},
"keywords": [
"svg",
"graphics",
"library",
"warp",
"distort"
],
"author": "Benjamin Fleming <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/benjamminf/warpjs/issues"
},
"homepage": "https://github.com/benjamminf/warpjs#readme",
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.1",
"babel-preset-env": "^1.2.2",
"coveralls": "^3.0.0",
"mocha": "^4.0.1",
"mocha-webpack": "^1.0.1",
"nyc": "^11.3.0",
"webpack": "^3.9.1"
},
"nyc": {
"extension": [
".js"
],
"include": [
"src"
]
}
}