-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "curl.js",
"version": "1.0.0",
"description": "Javascript Curl implementation - with WebGL acceleration",
"main": "index.js",
"scripts": {
"test": "gulp --harmony test",
"_babel": "babel --presets es2015 app/*.js -o build/curl.bundle.js",
"build": "gulp --harmony",
"server": "gulp server"
},
"babel": {
"presets": [
"latest"
]
},
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/curl.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-latest": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-mocha": "^3.0.1",
"gulp-util": "^3.0.8",
"mocha": "^3.2.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"glsl-transpiler": "^1.5.7",
"twgl.js": "^2.8.2"
},
"_comment": {
"devDependencies": {
"webpack": "^1.14.0",
"babel-preset-es2015": "^6.22.0"
}
}
}