forked from wavesjs/waves-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.63 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
{
"name": "waves-ui",
"version": "0.3.0",
"description": "'UI section of the wavesjs library'",
"authors": [
"Victor Saiz",
"Samuel Goldszmidt",
"Benjamin Matuszewski",
"Norbert Schnell",
"Karim Barkati"
],
"main": "dist/waves-ui.js",
"standalone": "wavesUI",
"scripts": {
"doc": "node ./bin/scripts --doc",
"transpile": "node ./bin/scripts --transpile",
"prebundle": "npm run hint && npm run transpile",
"bundle": "node ./bin/scripts --bundle",
"postbundle": "npm run uglify",
"uglify": "node ./bin/scripts --uglify",
"watch": "node ./bin/scripts --watch",
"dev-test": "node ./bin/scripts --dev-test",
"pretest": "npm run hint",
"test": "browserify -t [ babelify --blacklist regenerator ] tests/*/*.js | testling -u --no-show",
"hint": "jshint ./src; true",
"coverage": "browserify -t [ babelify --blacklist regenerator ] -t coverify tests/*/*.js | testling -u --no-show | coverify --json -o coverage.json && node ./bin/scripts --cover-report -i coverage.json"
},
"license": "BSD-3",
"repository": {
"type": "git",
"url": "https://github.com/wavesjs/ui"
},
"jshintConfig": {
"esnext": true,
"browser": true,
"node": true,
"devel": true
},
"dependencies": {
"babel-runtime": "^5.8.12"
},
"devDependencies": {
"fs-extra": "^0.16.3",
"jshint": "^2.6.0",
"node-watch": "^0.3.4",
"tape": "^4.0.1",
"uglify-js": "^2.4.16"
},
"globalDependencies[nonStandard]": {
"esdoc": "0.4.1",
"babel": "^5.8.29",
"browserify": "^11.2.0",
"babelify": "^6.1.3",
"testling": "^1.7.1",
"coverify": "^1.4.0"
}
}