-
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.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 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": "startext",
"version": "1.0.0",
"description": "creates animated an introduction",
"keywords": [
"d3",
"animation",
"stars"
],
"license": "BSD-3-Clause",
"main": "build/startext.js",
"jsnext:main": "index",
"homepage": "https://github.com/ee2dev",
"repository": {
"type": "git",
"url": "https://github.com/EE2dev/startext"
},
"scripts": {
"pretest": "rm -rf build && mkdir build && rollup -c",
"test": "node test/startext-test.js | tap-spec && eslint index.js src",
"prepare": "npm run test && uglifyjs build/startext.js -c -m -o build/startext.min.js"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"d3": "^4.9.1",
"eslint": "^3.19.0",
"rollup": "0.27",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "4",
"uglify-js": "^2.7.0",
"webfontloader": "^1.6.28"
},
"dependencies": {
"d3": "^4.9.1",
"webfontloader": "^1.6.28"
}
}